Swagger-ui 与 node.js 缺少 CSS,但在其他方面渲染良好
我正在尝试让 swagger-ui npm 在我的 node.js 应用程序中工作。
我有一个包含以下代码的 js 文件:
const swagger = require('swagger-ui');
module.exports = Backbone.View.extend({
initialize: function() {
this.$el.html(pugFile);
swagger({
spec: {... specs},
dom_id: '#docus',
});
}
});
其中 specs 包含 API 定义的 json。它加载和渲染得很好 - 但没有任何 CSS!
我的应用程序中没有其他代码用于使用 swagger-ui,只有那几行。如果 CSS 没有丢失,一切就完美了。
有人可以向我指出我缺少什么吗?我刚刚使用“npm install swagger-ui”安装了 swagger-ui 并按上述方式使用它。
多谢!
I am trying to get swagger-ui npm work in my node.js application.
I have a js file with the following code:
const swagger = require('swagger-ui');
module.exports = Backbone.View.extend({
initialize: function() {
this.$el.html(pugFile);
swagger({
spec: {... specs},
dom_id: '#docus',
});
}
});
where specs contains json for the API definition. It loads and renders fine - but without any CSS!
There is no other code in my application for using swagger-ui, only those few lines. If the CSS wasn't missing, all would be perfect.
Can someone point out to me what I am missing? I just installed swagger-ui with "npm install swagger-ui" and used it as above.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论