如何在不连接http服务器的情况下使用连接路由器?

发布于 2024-11-30 21:47:32 字数 472 浏览 1 评论 0原文

我有一个功能:

function foo(request, response, next)
{
   ...
}

我想使用“connect”npm 库中的路由器来路由请求。但是,我只能在文档中找到如何将路由器附加到 connect 的内置 HTTP 服务器。我想做这样的事情:

var connect = require('connect')
function foo(request, response, next)
{
    connect.middleware.router(request, response, next, function (app)
    {
        app.get('/', ...)
        app.get('/openid/verify', ...)
        ...
    })
}

问题是:如何传递请求、响应和下一步连接路由器?

I have a function:

function foo(request, response, next)
{
   ...
}

And I want to use the router from 'connect' npm library to route the request. However, I could only find in the documentation how to attach the router to the built-in HTTP server of connect. I want to do something like this:

var connect = require('connect')
function foo(request, response, next)
{
    connect.middleware.router(request, response, next, function (app)
    {
        app.get('/', ...)
        app.get('/openid/verify', ...)
        ...
    })
}

The question is: how do I pass request, response and next to connect router?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云柯 2024-12-07 21:47:32

您应该能够执行以下操作:

var connect = require('connect');

var router = connect.middleware.router(function (app) {
    app.get('/', ...)
    app.get('/openid/verify', ...)
});

function handleRequest(req, res, next) {
    router(req, res, next);
}

You should be able to do the following:

var connect = require('connect');

var router = connect.middleware.router(function (app) {
    app.get('/', ...)
    app.get('/openid/verify', ...)
});

function handleRequest(req, res, next) {
    router(req, res, next);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文