在React Native中获取API。如何设置请求的超时时间,希望大家都能提出好的建议。谢谢
答案 0 :(得分:0)
使用套餐: whatwg-fetch-timeout
npm命令:npm install whatwg-fetch-timeout --save;
用法:
return fetch('/path', {timeout: 500}).then(function() {
// successful fetch
}).catch(function(error) {
// network request failed / timeout
})