这是我的HTML代码>
<a ng-click="giftCategoriesProduct(x.categories_id)" >
<img src="{{x.categories_image}}"
style="width: 100%; height: 40%" class="img-rectangle" />
</a>
这是我的angualarjs
代码。
$scope.giftCategoriesProduct = function (id) {
alert('id'+id);
$http({
method : 'POST',
url : '/KaroMiddle/fetchProductById'
}).success(function (response) {
alert('inside success');
$scope.products = response;
}).error(function (error) {
$scope.status = 'Unable to load customer data: ' + error.message;
});
}
发生了什么事情不明白请帮助我...其他功能正常,他们就像这个功能一样但$http
和success
不起作用请建议我。
感谢。