这是我的代码:
HTML:
<div id="container" ng-controller="MyCtrl"> {{model.name}} </div>
JavaScript:
var app=angular.module('myApp', []);
var $injector =angular.injector(['ng']);
$injector.invoke(function($compile, $rootScope) {
var html = '<div ng-controller="MyCtrl1">{{model.name}}</div>'
var scope = $rootScope.$new();
scope.model = {name:'MyCtrl1'};
//alert(scope.model.name);
var e3 = $compile(html)(scope);
$('#container').append(e3[0]);
});
function MyCtrl($scope) {
$scope.model={};
$scope.model.name = 'MyCtrl';
};
function MyCtrl1($scope) {
//alert('MyCtrl1');
};
如您所见,它呈现了两个“MyCtrl”字符串。即角度忽略了我手动创建的范围对象。
问题是:如何$compile
使用我创建的范围?
更新:丑陋的解决方法:
再次调用$compile
应用模型后:
angular.element(e3[0]).scope().$apply(function(scope) {
scope.model = {name:'MyCtrl1'};
});