我想知道我编写的代码是否高效(我正在得到想要的东西),但是看起来并不吸引人。有没有更好的方法来写这个?
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()
答案 0 :(得分:0)
您可以使用async / await
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)
}