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