web-api – 在Meteor中如何轻松调用外部Web API?

前端之家收集整理的这篇文章主要介绍了web-api – 在Meteor中如何轻松调用外部Web API?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
(或将)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

猜你在找的HTML相关文章