Why fetch returns promise pending?(为什么 fetch 返回 promise 未决?)
问题描述
I am using fetch to get data but it keeps returning promise as pending. I've seen many posts regarding this issue and tried all the possibilities but didn't solve my issue. I wanted to know why the fetch returns promise as pending in brief what are the possible cases where fetch returns pending status?
My piece of code for reference:
fetch(res.url).then(function(u){
return u.json();
})
.then(function(j) {
console.log(j);
});
Promises are a way to allow callers do other work while waiting for result of the function.
See Promises and Using Promises on MDN:
A Promise is in one of these states:
- pending: initial state, neither fulfilled nor rejected.
- fulfilled: meaning that the operation completed successfully.
- rejected: meaning that the operation failed.
The fetch(url)
returns a Promise
object. It allows attaching "listener" to it using .then(…)
that can respond to result value (response to the request). The .then(…)
returns again Promise
object that will give result forward.
async
and await
You can use JS syntax sugar for using Promises:
async function my_async_fn(url) {
let response = await fetch(url);
console.log(response); // Logs the response
return response;
)
console.log(my_async_fn(url)); // Returns Promise
async function
s return a Promise. await
keyword wraps rest of the function in .then(…)
. Here is equivalent without await
and async
:
// This function also returns Promise
function my_async_fn(url) {
return fetch(url).then(response => {
console.log(response); // Logs the response
return response;
});
)
console.log(my_async_fn(url)); // Returns Promise
Again see article on Promises on MDN.
这篇关于为什么 fetch 返回 promise 未决?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 fetch 返回 promise 未决?
- Flexslider 箭头未正确显示 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 400或500级别的HTTP响应 2022-01-01