我真的很困惑在角度4.0重新编译,有人可以帮助我吗?
我已经使用$ scope在角度1.0中完成了重新编译问题但是角度4.0中没有$ scope,所以如何在角度4.0中重新编译?
这是我们在角度1.0中的重新编译代码,它工作正常,但我想在角4.0中使用相同的问题(重新编译)面。
示例:
function recompileController($compile,$scope,$http,$rootScope) {
$scope.recompile = function (id) {
var element1 = angular.element('#recompileController'+id);
$compile(element1.contents())($scope);
}
}