0
我保存文件API代碼看起來像錯誤響應
save(category) {
category.save().then(() => {
this.transitionTo('categories');
}).catch((adapterError) => {
console.log(category.get('errors').toArray());
console.log(category.get('isValid'));
});
},
當API的答案是:
{"errors":[{"attribute":"name","message":"This value should not be blank."}]}
然後
category.get('isValid')
仍然返回true 。
我的問題是,驗證錯誤應該如何看起來像?
什麼是保存對象時來自開發者控制檯的請求的標題嗎? – DanGar
之前我有200,但現在改爲400,結果是一樣的。 –
錯誤處理取決於您的ember-data適配器。你使用哪個適配器? – Engwan