我按照链接GitHub gem rich将 CKeditor 安装到 rails_admin 但出现错误:Unsupported field datatype: rich_editor
我的模型
edit do
field :title
field :description, :rich_editor do
config({
:insert_many => true
})
end
field :autho
field :book_type
end
我该如何解决这个错误?或者这是一个问题?
编辑:我试过了,它奏效了
field :content, :text do
ckeditor do true end
end