<bdo id='xlxwG'></bdo><ul id='xlxwG'></ul>

    <small id='xlxwG'></small><noframes id='xlxwG'>

        <legend id='xlxwG'><style id='xlxwG'><dir id='xlxwG'><q id='xlxwG'></q></dir></style></legend>
      1. <tfoot id='xlxwG'></tfoot>
        <i id='xlxwG'><tr id='xlxwG'><dt id='xlxwG'><q id='xlxwG'><span id='xlxwG'><b id='xlxwG'><form id='xlxwG'><ins id='xlxwG'></ins><ul id='xlxwG'></ul><sub id='xlxwG'></sub></form><legend id='xlxwG'></legend><bdo id='xlxwG'><pre id='xlxwG'><center id='xlxwG'></center></pre></bdo></b><th id='xlxwG'></th></span></q></dt></tr></i><div id='xlxwG'><tfoot id='xlxwG'></tfoot><dl id='xlxwG'><fieldset id='xlxwG'></fieldset></dl></div>
      2. 使用异步/等待返回值意外获取 API

        时间:2023-10-02

            <bdo id='fqQjh'></bdo><ul id='fqQjh'></ul>
              <tbody id='fqQjh'></tbody>
            • <tfoot id='fqQjh'></tfoot>
              1. <legend id='fqQjh'><style id='fqQjh'><dir id='fqQjh'><q id='fqQjh'></q></dir></style></legend>
                • <i id='fqQjh'><tr id='fqQjh'><dt id='fqQjh'><q id='fqQjh'><span id='fqQjh'><b id='fqQjh'><form id='fqQjh'><ins id='fqQjh'></ins><ul id='fqQjh'></ul><sub id='fqQjh'></sub></form><legend id='fqQjh'></legend><bdo id='fqQjh'><pre id='fqQjh'><center id='fqQjh'></center></pre></bdo></b><th id='fqQjh'></th></span></q></dt></tr></i><div id='fqQjh'><tfoot id='fqQjh'></tfoot><dl id='fqQjh'><fieldset id='fqQjh'></fieldset></dl></div>

                  <small id='fqQjh'></small><noframes id='fqQjh'>

                  本文介绍了使用异步/等待返回值意外获取 API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  函数如下:

                  const getUserIP = async () => {
                    let response = await fetch('https://jsonip.com/');
                    let json = await response.json();
                  
                    console.log(json.ip)
                    return json.ip;
                  };
                  

                  在控制台中,IP 地址按预期记录.但是,当我将IP 地址"保存到变量时:

                  In the console, the IP address is logged as expected. However, when I save the 'IP address' to a variable:

                  const ip = getUserIP();
                  

                  然后在控制台输入ip,值显示为:

                  And then type ip in the console, the value is shown as:

                  Promise { <state>: "fulfilled", <value>: "/* my IP here*/" }
                  

                  我在 YouTube 上观看过使用相同逻辑/语法的视频,尽管 API 不同,但它确实有效.我已经搜索了 Google 和 SO,但找不到具有相同问题的线程.

                  I've watched videos on YouTube who have used the same logic/syntax albeit for a different API, but it works. I've searched Google and SO and couldn't find a thread with the same issue.

                  我错过了什么?

                  谢谢.

                  推荐答案

                  异步函数返回 Promises,你需要按如下方式获取该值:

                  Async functions return Promises, you need to get that value as follow:

                  getUserIP().then(ip => console.log(ip)).catch(err => console.log(err));
                  

                  或者,您可以将async声明添加到调用函数getUserIP的主函数中:

                  Or, you can add the async declaration to the main function who calls the function getUserIP:

                  async function main() {
                      const ip = await getUserIP();
                  }
                  

                  这篇关于使用异步/等待返回值意外获取 API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 json (body: raw) POST 数据时总是失败 下一篇:接收到 fetch POST 请求的响应后,如何将用户重定向到页面?

                  相关文章

                  <small id='F0FCT'></small><noframes id='F0FCT'>

                • <legend id='F0FCT'><style id='F0FCT'><dir id='F0FCT'><q id='F0FCT'></q></dir></style></legend>

                  • <bdo id='F0FCT'></bdo><ul id='F0FCT'></ul>
                  <tfoot id='F0FCT'></tfoot>
                      <i id='F0FCT'><tr id='F0FCT'><dt id='F0FCT'><q id='F0FCT'><span id='F0FCT'><b id='F0FCT'><form id='F0FCT'><ins id='F0FCT'></ins><ul id='F0FCT'></ul><sub id='F0FCT'></sub></form><legend id='F0FCT'></legend><bdo id='F0FCT'><pre id='F0FCT'><center id='F0FCT'></center></pre></bdo></b><th id='F0FCT'></th></span></q></dt></tr></i><div id='F0FCT'><tfoot id='F0FCT'></tfoot><dl id='F0FCT'><fieldset id='F0FCT'></fieldset></dl></div>