我有一个使用 TinyMCE 的 Rails 应用程序,通过 TinyMCE-Rails gem。我正在尝试使用 maxchars 插件来统计字数。我已将插件添加到 config/tinymce.yml
plugins:
- fullscreen
- maxchars
我已将 max_chars 和 max_chars_indicators 添加到我的视图中。
<%= simple_form_for @project |f| %>
<%= f.input :overview, input_html: { :class => "tinymce", :rows => 70, :cols => 140 } %>
<%= tinymce max_chars: 6000, max_chars_indicator: "characterCounter" %>
<div id="characterCounter">
</div>
<div class="form-actions add-top">
<hr>
<p>
<%= f.button :submit, :class => 'inline-block large_button add-bottom' %>
</p>
</div>
<% end %>
但是现在编辑器甚至没有出现。在添加这个插件时我有什么遗漏吗?