获取返回的JSON片段并在全局范围内使用它们的最佳方法是什么?
即可以在函数外使用wind变量。
非常感谢
var request = require('request');
var wind = {};
request('https://api.openweathermap.org/data/2.5/weather?q=melbourne&appid=########&units=metric', function (_error, _response, body) {
body = JSON.parse(body);
//console.log(body.wind);
wind = body.wind.speed;
return wind;
}
);
console.log(wind);