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 仍然让我的数据返回未定义
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01