Using a promise with Fetch API response still has my data returning as undefined(使用带有 Fetch API 响应的 Promise 仍然让我的数据返回未定义)
问题描述
我正在构建一个简单的网络应用程序,允许用户在视频游戏中搜索玩家的统计数据.
I am building a simple web app that allows users to search the stats of a player in a video game.
这是我的代码
let player = [];
let proxy = "https://cors-anywhere.herokuapp.com/"
let url = proxy + "https://secure.runescape.com/m=hiscore_oldschool/index_lite.ws?player=Hess"
function getPlayer() {
return fetch(url)
.then((response) => response.text())
.then((data) => console.log(data));
}
getPlayer().then((playerData) => {
console.log(playerData);
playerData.push(player);
console.log(player);
});
如您所见,我正在尝试 console.log 响应并将响应推送到数组 player
以便以后可以在 player
中使用受感染的数据数组来执行一些其他操作.
As you can see, I am trying to console.log the response and push the response to an array player
so I can later use the fecthed data in the player
array to perform some other actions on.
为什么它返回未定义?为什么我的响应不会被推送到 player
数组中?
Why is it returning undefined? Why won't my response get pushed into the player
array?
推荐答案
let player = [];
let proxy = "https://cors-anywhere.herokuapp.com/"
let url = proxy + "https://secure.runescape.com/m=hiscore_oldschool/index_lite.ws?player=Hess"
function getPlayer() {
return fetch(url)
.then((response) => response.text())
.then((data) => {
console.log(data)
return data;
});
}
getPlayer().then((playerData) => {
console.log(playerData);
player.push(playerData);
console.log(player);
});
您需要确保在 .then() 的每一步都返回一个值.而你的 .push 是错误的方式
You need to make sure you are returning a value at each step of your .then(). And your .push is the wrong way round
这篇关于使用带有 Fetch API 响应的 Promise 仍然让我的数据返回未定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用带有 Fetch API 响应的 Promise 仍然让我的数据返回未定义


- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07