html:
ng-bind-html
<div class="tabs_content" ng-bind-html="specialHtml"></div>
ng-src
<iframe ></iframe>
加载模块:
ng-bind-html
angular.module('DLPortalApp', []).controller("MyCtrl", function ($scope, $http, $sce) { //重点列表项目 $scope.specialHtml = $sce.trustAsHtml('<iframe ></iframe>'); });
/*重点:
$sce这个参数,它相当于一把钥匙
*/
ng-src
angular.module('DLPortalApp', []).controller("MyCtrl", function ($scope, $http, $sce) { //重点列表项目 $scope.trustSrc = $sce.trustAs($sce.RESOURCE_URL,"你的地址");
//$scope.trustSrc = $sce.trustAsResourceUrl("你的地址");//等同于这个方法 });
版权声明:除特别声明外,本站所有文章皆是本站原创,转载请以超链接形式注明出处!