Mongoose-auth 和 connect-assetmanager 不能很好地协同工作

发布于 2024-12-04 02:14:49 字数 506 浏览 0 评论 0原文

我使用 connect-assetmanager 来整合 js 和 css 文件,并使用 mongoose-auth 来验证用户身份。这两个功能独立工作,但似乎不能一起工作。

按照这个顺序, mongoose-auth 可以工作,但是我的缩小版 js & css 路由损坏:

app.use(
    mongooseAuth.middleware()
  , assetManager(assetManagerGroups)
);

按此顺序,缩小的路由可以工作,但 mongoose-auth 未设置 req.user:

app.use(
    assetManager(assetManagerGroups)
  , mongooseAuth.middleware()
);

有什么想法吗?如果您需要更多代码,请告诉我。不过,我确实将其隔离到这两行,并检查我是否没有使用 assetmanager 或其他任何东西的通配符路由。谢谢!

I'm using connect-assetmanager to consolidate js and css files, and mongoose-auth to authenticate users. Both features work independently, but don't seem to work together.

In this order, mongoose-auth works, but my minified js & css routes are broken:

app.use(
    mongooseAuth.middleware()
  , assetManager(assetManagerGroups)
);

In this order, the minified routes work, but req.user is not set by mongoose-auth:

app.use(
    assetManager(assetManagerGroups)
  , mongooseAuth.middleware()
);

Any ideas? Please let me know if you need more code. I've definitely isolated it to these two lines, though, and check that I'm not using a wildcard route with assetmanager or anything. Thanks!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文