ng-click工作,但$ http不起作用其他功能工作正常

时间:2016-10-20 20:58:47

标签: angularjs spring

这是我的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;

        });


}

发生了什么事情不明白请帮助我...其他功能正常,他们就像这个功能一样但$httpsuccess不起作用请建议我。

感谢。

0 个答案:

没有答案