作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 Controller 注入(inject) html 输入,我正在尝试绑定(bind)范围变量,但它不起作用。
这是我的代码
HTML :
<div ng-controller='addHTML'>
<div ng-bind-html="trustedHtml"></div>
<code>{{user}}</code>
</div>
var app = angular.module('app',[]);
var addHTML = function ($scope,$sce) {
$scope.user = {};
$scope.user.someVariable = "";
//inject some html
$scope.html = '<input type="text" ng-model="user.someVariable">';
$scope.trustedHtml = $sce.trustAsHtml($scope.html);
};
最佳答案
ngBindHtml
指令不会 $compile 模板,它只会将模板插入 DOM。
我复制了ngBindHtml
( source code ) 并添加了 $compile
新指令:
app.directive('compileHtml',['$sce', '$parse', '$compile',
function($sce, $parse, $compile){
return {
link: function(scope,element,attr){
var parsed = $parse(attr.compileHtml);
function getStringValue() { return (parsed(scope) || '').toString(); }
scope.$watch(getStringValue, function (value) {
var el = $compile($sce.getTrustedHtml(parsed(scope)) || '')(scope);
element.empty();
element.append(el);
});
}
};
}]);
<div compile-html="trustedHtml"></div>
关于angularjs - 如何将 Controller 绑定(bind)到动态添加的 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21914760/
我是一名优秀的程序员,十分优秀!