gpt4 book ai didi

http - 如何访问 METOR 应用 Iron 路由器中的 HTTP 请求和响应对象

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:23:36 25 4
gpt4 key购买 nike

我正在开发 meteor 应用程序,它在应用程序中有 iron 路由器。我需要访问路由器中的 http 请求和响应对象,以访问请求数据。

最佳答案

要访问 requestresponse 对象,您需要做的就是告诉 Iron Router 此路由是服务器专用路由,方法是传递带有 的选项对象>{ where: 'server' } 像这样:

Router.route('/hello', function () {
var req = this.request;
var res = this.response;
res.end('hello from the server\n');
}, { where: 'server' });

或者如果你想对不同的方法使用不同的函数:

Router.route('/hi', { where: 'server' })
.get(function () {
var req = this.request;
var res = this.response;
res.end('hello from the server\n');
})
.post(function () {
var req = this.request;
var res = this.response;
doSomething(req.body)
res.end('done\n');
});
});

在文档中查看更多信息:http://iron-meteor.github.io/iron-router/

关于http - 如何访问 METOR 应用 Iron 路由器中的 HTTP 请求和响应对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48646961/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com