Rails 3.1 ckeditor 宝石。每个页面加载 Ckeditor 资源
我正在使用 ckeditor gem,并且在我网站的一页上使用它。当我使用 Apple Safari 的 Web 检查器时,我注意到每个页面上都加载了 ckeditor 资源。关于如何限制这种情况的任何想法。我正在开发模式下运行它
I am using the ckeditor gem and i am using it on one page of my website. When i use Apple Safari's web inspector I am noticing that ckeditor resources are loading on every page. Any ideas on how to limit this. I'm running it in development mode
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要此处的帮助,您应该添加更多详细信息。例如:
无论如何,我猜您将
//=require ckeditor
指令放在application.js
文件中,该文件包含在布局视图中,因此在应用程序的每个页面中,如果您没有更改布局设置。您只需将指令移动到另一个
.js
文件中,并将其包含在您需要 ckeditor 的页面中。有关更多信息,请参阅此 gem 文档。
You should add more details if you want help here. For example:
Anyway I guess you placed the
//=require ckeditor
instruction in yourapplication.js
file, which is include in the layout view, so in every page of your app, if you didn't change the layout settings.You just need to move the instruction in another
.js
file and include it just in the page where you need ckeditor.See this gem documentation for more information.