我在使用 nicEdit 时遇到了麻烦。
框架是 ruby 2.0.0 / rails 4.0.1
在本地主机中时,仅当您将页面上传两次时才有效。
但是在 Heroku 中部署时,它根本不起作用。
我按照这个例子一直到了这条线。
我在 ../vendor/assets/javascripts 下有一个 niEdit.js
这是我的完整表格:
<%= javascript_include_tag 'nicEdit' -%>
<%= simple_form_for(@recipe) do |f| %>
<%= f.error_notification %>
<div class="field">
<%= f.label "Elige un cromo" %><br />
<%= f.file_field :chrome %>
</div>
<div class="form-inputs">
<%= f.association :user, label_method: :name, collection: User.where(name: current_user.name), :label => "Cociner@" %>
<%= f.association :category, :label => "Categoría", label_method: :plato_category, collection: Category.all %>
<%= f.input :plato %>
<%= f.input :minutos %>
<script type="text/javascript">
bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
</script>
<div class="well well-small">
<p>Tejemaneje</p>
<%= f.text_area :tejemaneje, :rows => 10, :style => 'width: 700px' %>
</div>
</div>
<p>
</p>
<%= f.button :submit, "Receta", :class => "btn btn-success" %>
<% end %>
我应该做些什么才能让它在 localhost 和 heroku 上完全工作?谢谢。