将函数参数传递给ajax url并不是'工作?

时间:2014-02-19 02:56:09

标签: javascript ajax angularjs

    $scope.getPostItem = function(itemLength){
        // load post items ajax
        $http({
            method: 'GET', 
            url: '../Rresume/loadPostItem.php?itemLength=itemLength'}).
success(function(data, status, headers, config) {

});

尝试将itemLength传递到url中,可能吗?我得到了一个空结果。但是当我把itemLength = 4时它起作用。

1 个答案:

答案 0 :(得分:1)

scope.getPostItem = function(itemLength){
        // load post items ajax
        $http({
            method: 'GET', 
            url: '../Rresume/loadPostItem.php?itemLength=' + itemLength}).
success(function(data, status, headers, config) {

});

试试这个