我需要 Meteor 服务器来处理不是来自应用程序客户端的非常简单的 POST 请求。使用 Express,我只会做类似app.post('/something', function...
.
Meteor 中是否有等价物?如果没有,我应该如何设置,在is_server
上下文中启动 Express 服务器?
Meteor 还没有内置的功能来提供一个宁静的 API。
您可以使用 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 使用meteor-collectionapi Atmosphere 包提供RESTful API。另请参阅如果我需要额外的 REST API,是否可以选择 Meteor?.