我的控制器我正在通过此代码添加一个HTML
var promise=productService.getProduct();
var template = $http.get('resources/template/Product.html').then(function(html){
promise.then(function(data){
$scope.productOrProducts = $sce.trustAsHtml(html.data);
$compile($scope.productOrProducts)($scope);
})
});
在html.data中我有使用$ scope variables的指令。但是它无法将所有变量绑定到那些指令 我能做什么 ?
答案 0 :(得分:0)
在Product.html中,您不需要使用{{$scope.value}}
之类的内容,只需使用{{value}}
- 您已将其绑定到范围。