如何在ng-view中注入html页面

时间:2015-08-26 10:23:29

标签: html angularjs ng-view

我在任何教程中找到的所有代码都是注入消息字符串而不是html页面。 如何使用ng-view注入html页面?说SPA的结构是2个链接"添加"和"查看" 添加注入add.html和View注入View.html

1 个答案:

答案 0 :(得分:0)

使用

  

纳克绑定-HTML

您的HTML代码看起来像

<div ng-controller="ExampleController">
 <p ng-bind-html="myHTML"></p>
</div>

您可以通过以下方式bin html

angular.module('bindHtmlExample', ['ngSanitize'])
.controller('ExampleController', ['$scope', function($scope) {
  $scope.myHTML =
     'I am an <code>HTML</code>string with ' +
     '<a href="#">links!</a> and other <em>stuff</em>';
}]);

建议绑定html而不是htmlpage。