我想知道是否可以一次性使用多个参数查询API。
我知道我们可以做到
this.store.find("assetType",{category:"ancillary"});
将查询http://l5.dev/api/assetTypes?category=ancillary
但我想要做的是查询 http://l5.dev/api/assetTypes?category=ancillary&channel=print
这是否可以一次性在Ember中完成此操作。或者我是否必须对第一个查询的结果进行过滤?
答案 0 :(得分:1)
你为什么不尝试这样的事情:
this.store.find("search",{category:"user", limit : 10});
这将生成像
这样的GET请求/search?category=user&limit=10