12

我需要 Meteor 服务器来处理不是来自应用程序客户端的非常简单的 POST 请求。使用 Express,我只会做类似app.post('/something', function....

Meteor 中是否有等价物?如果没有,我应该如何设置,在is_server上下文中启动 Express 服务器?

4

3 回答 3

6

Meteor 还没有内置的功能来提供一个宁静的 API。

于 2012-04-23T18:04:13.793 回答
2

您可以使用 Backbone 在我们的应用程序中构建基本路由,如此处提供的 Meteor 示例:http: //meteor.com/examples/todos

你可以这样做:

var AppRouter = Backbone.Router.extend({
  routes: {
    "": "dashboard",
    "home": "dashboard",
    "profile": "profile",
},

profile: function () {
    Session.set("current_view", "profile")
    this.navigate('profile', {trigger: true});
},

另请参阅:如何使用 Meteor 公开 RESTful Web 服务

于 2012-10-29T19:57:14.930 回答
1

或者,您可以使用meteor 使用meteor-collectionapi Atmosphere 包提供RESTful API。另请参阅如果我需要额外的 REST API,是否可以选择 Meteor?.

于 2013-06-15T13:53:45.803 回答