我尝试使用指令模板更新列表。但它不会在http请求后更新数据。
的test.html:
<div ng-repeat=" comment in [{name:"A"},{name:"B"},{name:"C"}]">
<div lookup-product-icon lookup="lookupProduct(comment)" products="products"></div>
</div>
<div lookup-products></div>
....
指令:
var app = angular.module('myApp');
app.directive('lookupProductIcon', function() {
return {
scope : {
lookup : "&"
},
template : '<div ng-click="lookup()">Use me!</div>',
};
});
app.directive('lookupProducts', function() {
return {
restrict : 'EA',
transclude : false,
scope : {
products : '='
},
templateUrl : 'lists.html'
};
});
控制器
$scope.products = [];
$scope.lookupProduct = function(lists) {
var details = {
name : lists.name,
host : $scope.host_name
};
productService.lookupProduct(details).then(function(data) {
$scope.products = data.list;
console.log($scope.products);
//Here display the lists in developer tools.
}).catch(function(data) {
if (data.message) {
alert(data.message);
}
});
};
List.html:
<ul>
<li ng-repeat = "product in products"> {{product.name}} </li>
</ul>
点击&#34;使用我!&#34;意味着我需要发送http请求,然后在list.html中显示相应内容的列表。
lookupProduct函数正常工作,但唯一的事情是产品没有更新。
详细说明:
我添加了两个指令。 1. lookupProductIcon - 显示文本。一旦单击此文本意味着需要http get请求,然后响应需要在list.html中更新(lookupProducts指令) 2. lookupProducts - 这里的数据没有更新。
答案 0 :(得分:0)
您的lookupProducts
指令的范围变量products
未在您的html标记中传递。
您需要将一系列产品传递给lookupProducts
指令。
<div lookup-products products="products"></div>