Redactor Rails - 无法上传文件

时间:2014-10-07 22:14:15

标签: ruby-on-rails ruby

我正在使用redactor rails gem在我的项目中提供wysiwyg编辑器。每当我在本地运行应用程序时,文件上传似乎都有效。但每当我在生产中部署和运行应用程序时,文件上传图标都不可见。

Wysiwyg编辑在本地:

enter image description here

生产中的Wysiwyg编辑:

enter image description here

在生产环境中,缺少“文件上载”图标。是什么导致了这个问题?

1 个答案:

答案 0 :(得分:0)

在调用redactor时,你缺少file_upload attr。请添加此

 $('#redactor').redactor({
    fileUpload: '/your_file_upload_script/',
 });