如何在`meteor`服务器中提供api?

时间:2013-04-30 08:33:15

标签: api meteor

如何在meteor服务器中提供api?我想做的是做一个简单的api:

POST /hostname/create-account/username

然后我可以调用Account.createUser创建一个帐户,然后返回uid。

1 个答案:

答案 0 :(得分:4)

您可以使用meteor router之类的内容。还有另一个名为collections api的包,但在这种情况下它可能对用户没用。但它可以帮助你使用其他系列。

使用meteor路由器,您可以创建服务器端路由,例如

服务器端js

Meteor.Router.add('/hostname/create-account/username', 'POST', function() {
   //this.params contains all the POST fields
   return "OK";
});

请记住,您需要meteorite使用access these community packages(例如流星路由器)