ActiveAdmin Trumbowyg 无法正常工作。我已经添加了使用它的上传选项,并按照此处给出的代码上传了文件。
它成功上传文件,但它没有插入到文本区域内。
form do |f |
f.inputs do
f.input: title
f.input: body, as:: trumbowyg,
input_html: {
data: {
options: {
btns: [
['removeformat'],
['upload'],
['insertImage'],
['viewHTML']
],
plugins: {
upload: {
serverPath: uploader_image_path(resource.id),
fileFieldName: 'file_upload'
}
}
}
}
}
f.input: banner_image, as:: file
end
f.actions
end
有什么解决办法吗?
演示站点供参考。
将它与编辑器下方给出的插件选项一起使用。