1

我正在使用 Google AppEngine 作为后端,使用 AngularJS 作为我正在制作的 Web 应用程序的前端。我正在向用户展示页面中的数据。
AppEngine 具有选择数据并返回 3 条信息的能力:选择的项目、是否还有更多项目的指示和下一页的光标。
我需要将所有 3 件都返回到客户端应用程序,以便它可以显示获取的项目并允许用户转到下一页。

我也想使用 ngResource 与服务器交互。问题是 ngResource 期望项目列表是一个列表,这里它是一个包含 3 个部分的对象。

有没有办法稍微修改 ngResource 以便在获取数据后它将使用这些项目来构建项目数组?

4

1 回答 1

1

Not necessarily, ngResource can deal with arrays as well as single item or json object. The standard get operation returns a object whereas query returns array. Bottom line as long it is a valid json data ngResource would work.

You can always call get on the resource, get the data into a json object and then it can have sub-properties which can be of array type.

You can share your specific structure and the community can help you with understand how to access it using ngResource

于 2013-09-21T18:38:14.643 回答