Express中间件实现的动态样式表
我希望能够使用快速中间件将路由内部的样式表动态添加到全局样式表数组中。
我想出了这个要点 https://gist.github.com/1375882 但每个页面刷新只是继续将路由的样式表列表添加到数组的末尾。我怎样才能阻止它这样做呢?
I would like to be able to dynamically add a stylesheet from inside my routes to a global stylesheet array using express middleware.
I have come up with this gist https://gist.github.com/1375882 but each page refresh just continues to add the route's stylesheet list to the end of the array. How can I keep it from doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这段代码可以解决您的问题:
I think this code will solve your problem: