我已添加gem 'bootstrap-wysihtml5-rails'
到我的 Gemfile。所以我将这个 gem 与 rails_admin 一起使用。
我的项目中有一个名为“新闻”的模型。它看起来像这样:
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 面板刚刚消失,现在我的字段正文看起来像普通的文本字段。我没有接触过“新闻”模型,日志没有给出任何错误。
这里发生了什么?