2
我張貼到一個API,其中一個失敗的迴應是故意的輸出:從API獲取JSON響應?
return response()->json([
'message' => 'Record not found',
], 422);
在Chrome瀏覽器開發工具,我可以看到我得到的
在javascript中我希望響應422響應獲取消息並記錄下來,但我很努力這麼做,這裏是我的javascript:
axios.post('/api/test', {
name: 'test'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error) //this is Error: Request failed with status code 422
console.log(error.message); //this is blank
});
我怎樣才能得到消息?