我正在尝试使用 Meteor 方法从一个 API 获取 json 数据,我尝试使用流星 wrapAsync 以及 Node Future。下面是我的代码:
模板助手 - 客户端
getLocationTimebyAPI: function (company_location) {
Meteor.call('getLocationTimebyAPIServerMethod', company_location, function(error, results){
if(error){
console.log('error',error.reason);
} else {
var localtime = results.data.data.time_zone[0].localtime
var utcoffset = results.data.data.time_zone[0].utcOffset
console.log(localtime+ ' '+utcoffset);
var returntext = localtime+' (UTC '+utcoffset+')';
return returntext;
}
});
}
方法一:使用 Meteor wrapAsync - 服务器端
'getLocationTimebyAPIServerMethod': function(company_location){
var apiurl = 'http://api.worldweatheronline.com/free/v2/tz.ashx?q='+company_location+'&format=json&key=XXXXXX';
var convertAsyncToSync = Meteor.wrapAsync( HTTP.get ),
resultOfAsyncToSync = convertAsyncToSync( apiurl );
return resultOfAsyncToSync;
}
方法二:使用Node Fiber Future-Server端
'getLocationTimebyAPIServerMethod': function(company_location){
// use the node fibers npm
var Future = Npm.require('fibers/future');
var apiurl = 'http://api.worldweatheronline.com/free/v2/tz.ashx?q='+company_location+'&format=json&key=XXXXXXXX';
// Create our future instance.
var future = new Future();
HTTP.get( apiurl, {}, function( error, response ) {
if ( error ) {
future.return( error );
} else {
future.return( response );
}
});
return future.wait();
}
在这两种方法中,我都在控制台中打印了值,但没有返回它们。
我不知道我错在哪里,有人可以给我一些建议。
编辑:添加模板代码:
<tr>
<td>Local Time:</td>
<td><input id="company_location_time" name="company_location_time" type="text" size="23" placeholder="Lead Company Location Time" value="{{getLocationTimebyAPI company_location}}" readonly style="background:#7FAAFF;font-weight:bold;"><p style="font-size:8px;">Local Time Powered By <a style="font-size:8px;" href="http://www.worldweatheronline.com/search-weather.aspx?q={{company_location}}" target="_blank">World Weather Online</a></p></td>
</tr>