Mongoose-auth 和 connect-assetmanager 不能很好地协同工作
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论