码迷,mamicode.com
首页 > 其他好文 > 详细

async and await

时间:2019-07-20 15:41:02      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:ipaddr   col   json   const   syn   console   bin   async   http   

  async function getIPAddress () {
    const url = ‘https://httpbin.org/ip‘
    const req = await fetch(url)
    const json = await req.json()
    const data = await json.origin
    console.log(data)
  }
  getIPAddress()

 

async and await

标签:ipaddr   col   json   const   syn   console   bin   async   http   

原文地址:https://www.cnblogs.com/ronle/p/11217893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!