这是由于发送请求时没有写.catch(res=>{})方法去获取有可能的错误,才报的错误
getUserRoles().then(json=>{
console.log(‘success’)
}).catch(function (err) {
console.log(err);
})
}
这是由于发送请求时没有写.catch(res=>{})方法去获取有可能的错误,才报的错误
getUserRoles().then(json=>{
console.log(‘success’)
}).catch(function (err) {
console.log(err);
})
}