gpt4 book ai didi

API 的 Javascript 效率

转载 作者:行者123 更新时间:2023-11-30 06:17:09 26 4
gpt4 key购买 nike

我想知道我写的代码是否高效(我得到了我想要的),但它看起来并不吸引人。有没有更好的方法来写这个?

require('es6-promise').polyfill();
require('isomorphic-fetch');

function get_height() {

const height_url = 'https://somewebsite.info/api/someth/tip/height';

var data = fetch(height_url)
.then((resp) => resp.json())
.then(function(data) {
console.log("The current height is " + data)
})
}

get_height()

最佳答案

你可以使用异步/等待

async function get_height() {

const height_url = 'https://somewebsite.info/api/someth/tip/height';

var data = await (await fetch(height_url)).json();

console.log("The current height is " + data)
}

关于API 的 Javascript 效率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55467458/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com