我已将gem 'bootstrap-wysihtml5-rails'
添加到我的Gemfile中。所以我在rails_admin中使用这个gem。
我的项目中有一个名为“新闻”的模型。它看起来像这样:
class News < ActiveRecord::Base
has_attached_file :photo
attr_accessible :photo, :header,:caption,:body,:photo_file_name,:photo_content_type,:photo_file_size
rails_admin do
field :photo,:paperclip
field :header
field :caption
field :body, :wysihtml5
end
end
我在bootstrap-wysihtml5.css
和bootstrap-wysihtml5.js
目录中有app/assets/stylesheets
和app/assets/javascripts
个文件。
这段时间以前工作得很好。我有wysihtml5-textfield。
但昨天wysihtml5面板刚刚消失,现在我的场体看起来像普通的文本区域。我没有触及“新闻”模型和日志没有给出任何错误。
这里发生了什么?