当响应 json 根为单数时,我收到 Ember 错误。
json响应:
{"subscription": {"id": "1"}}
错误:
Assertion failed: Your server returned a hash with the key subscription but you have no mapping for it
模型:
App.Subscription
subscriptions
如果我在 json 响应中传递复数根键,它工作正常。我不认为我应该这样做,因为如果只有一个资源要发送,单数版本是活动 _model_serializers 的默认行为。
这是 Ember 中的一个错误,还是我应该为此做些什么来得到支持?