设置超时时间是50毫秒,接口还能正常请求,超时时间不生效
axios({
method: 'get',
url: '',
params: {},
timeout: 50
}).then(res => {
console.log('res---', res)
}).catch(error => {
if (error.config.timeout == 50) {
Message.error('请求超时,请检查网络')
} else {
console.log(error)
}
})
全局设置axios.defaults.timeout = 50 也不生效
你可以尝试一下把timeout这样写