使用带有 Fetch API 响应的 Promise 仍然让我的数据返回未定义

Using a promise with Fetch API response still has my data returning as undefined(使用带有 Fetch API 响应的 Promise 仍然让我的数据返回未定义)
本文介绍了使用带有 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 仍然让我的数据返回未定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)