(或将)Meteor提供一个库来处理外部Web API
调用?例如.构建与Facebook Graph API或Google电子表格API集成的Meteor应用程序.
Meteor现在
包括http包.首先,运行流星
添加http.然后,您可以使用同步或异步方式在服务器上进行HTTP请求:
// server sync
res = Meteor.http.get(SOME_URL);
console.log(res.statusCode,res.data);
// server async
Meteor.http.get(SOME_URL,function (err,res) {
console.log(res.statusCode,res.data);
});
同样的事情在客户端工作,但是你必须使用异步表单.
原文链接:https://www.f2er.com/html/230160.html