如何在Meteor中编写HTTP请求?

时间:2017-04-27 07:13:11

标签: meteor

我只是在Meteor API中找到Meteor.methodsMeteor.call,但我希望为另一个App调用写一个postget方法。我该怎么办?

2 个答案:

答案 0 :(得分:0)

您可以使用meteor包http

运行meteor add http

安装它

Here is a link to the docs which has example calls and lists all the arguments you can pass the http call

来自文档的调用示例:

const result = HTTP.call('GET', 'http://api.twitter.com/xyz', {
    params: { user: userId }
});

答案 1 :(得分:0)

看起来您想要接收HTTP get和post请求。我对吗? 如果是,请查看此包:restivus