考虑以下代码
var el = angular.element('<div>{{variable}}</div>');
$(document.body).append(el);
angular.bootstrap(el);
有没有办法指定初始范围的variable
值。这样当附加的角度应用程序被引导时 - 它已经有了这个变量吗?
答案 0 :(得分:1)
尝试Module.run方法:
app.run(function($rootScope) {
$rootScope.variable = 'init value';
})