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);
});
同样的事情在客户端工作,但是你必须使用异步表单.