我正在尝试在除 id 之外的其他参数上进行查找(使用 ember-data),实际上是两个参数。
但我得到的只是:
"Uncaught Error: assertion failed: Your server returned a hash with the key customer but you have no mappings".
在代码中挖掘之后,我看到 find 方法在给定哈希时委托给findQuery方法,这会创建一个DS.AdapterPopulatedRecordArray但我只在我的 json 中返回一个客户对象:
{"customer":{
"id":24857,"name":"Kim Fransman","id_number":"XXXX","email":"email@domain.com","type":"Person"}}
我可以通过将我的 json 包装在客户数组中并在我的车把视图中循环它们来解决这个问题,但这感觉非常错误。
今天有没有办法用 ember-data 做到这一点?