Redactor Rails宝石

时间:2015-04-14 14:58:03

标签: ruby-on-rails text-editor redactor

我已经多次走过Redactor rails gem,但很难让编辑器出现在我的页面上。我用以下内容初始化了编辑器:

     <%= f.text_field :content, class: 'redactor form-control', :placeholder => "Place content Here!", id: "redactor"%>

我在这里做错了什么?我已经给它一个唯一的id并放置了redactor类,那么还有什么东西会丢失?

1 个答案:

答案 0 :(得分:1)

你应该初始化redactor。您将获得详细的文档here

对于您,下面的代码将起作用

&#13;
&#13;
$('#redactor').redactor({ options });
&#13;
&#13;
&#13;