角度查询中的嵌套参数

时间:2013-09-03 09:24:15

标签: angularjs angular-resource

我有一个基本的角度资源(角度1.0.7):

app.factory "User", [ "$resource", ($resource)->
  $resource "/users/:id", { id: '@id' }, {
    index:     { method: 'GET', isArray: false }
  }
]

我可以传递以下参数:

User.index({ foo: 1, bar: 2 })

但我需要传递嵌套参数:

User.index({ foo: { bar: 1 } })

这会失败,因为它发送:

/users?foo=%5Bobject+Object%5D

我试过了:

User.index({ foo: JSON.stringify({ bar: 1 }) })

但显然在服务器端无法识别参数(仅仅是字符串),我想避免在那里解析麻烦。

你对这个问题有一个优雅的解决方案吗?


使用jQuery我已经完成了:

$.get("/users", { foo: { bar: 1 } } )

产:

/users?foo%5Bbar%5D=1

服务器完美解释。


似乎like a known issuehere too),让我们从现在开始坚持一个丑陋的补丁......

1 个答案:

答案 0 :(得分:3)

不如Angular的更改那么优雅,但你应该能够通过设置函数的结果来解决这个问题:

User.index.get({ "foo": (function () { 
    return JSON.stringify({ bar: 1 });
})() } );

结果类似于您要查找的HTTP请求:

?foo=%7B%22bar%22:1%7D

整个角度示例:

var app = angular.module('myApp', ['ngResource']);
var restUrl = window.location + 'echo/json/';

app.factory('User', function($resource, $http){
    return {
        index: $resource(restUrl)
    }               
});

function RestCtrl($scope, User) {
    $scope.url = restUrl;
    User.index.get({ "foo": (function () { 
        return JSON.stringify({ bar: 1 });
    })() } );
}

http://jsfiddle.net/pherris/U8F8G/6/