0
我越來越等待 - catch錯誤 - UnhandledPromiseRejectionWarning
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 44): Error: fail
main.js
import { request } from './api'
async getData({ commit, state }, ids){
try {
var x = await request(ids)
commit('getData', x.data)
} catch (e) {
console.log('request failed get',e.code,e.errno)
}
}
api.js
export async function request(type,url,ids){
axios.get('localhost/data')
.then(function (response) {
return Promise.resolve(response.data)
})
.catch(function (e) {
return Promise.reject(new Error('fail'))
})
}
我如何處理的承諾拒絕? try catch塊不應該從await函數中捕獲錯誤嗎?
感謝,我只注意到我忘了復位功能 - 好吧,我想我明白了,我回一個承諾中承諾這是沒用的 – user345234674567