代码之家  ›  专栏  ›  技术社区  ›  Trip

表单\的伪错误!这件事发生在谁身上了吗?

  •  1
  • Trip  · 技术社区  · 14 年前

    我的形式…

    <%= form_for @wysiwyg, :url => admin_wysiwyg_path do |f| %>
    <%= f.ckeditor_textarea(:content, :width => '100%', :height => '200px') %>
    <%= f.submit%>
    <% end %>
    

    对吗?有道理,我不会发疯的,对吧?

    错误:

    compile error
    default/app/views/admin/wysiwygs/new.html.erb:3: syntax error, unexpected ')'
    ...=> admin_wysiwyg_path do |f| ).to_s); @output_buffer.concat ...
    

    路线:

    map.namespace :admin do |admin|
      admin.resources :wysiwygs
    

    这是使用ckeditor的spree应用程序的内部

    2 回复  |  直到 14 年前
        1
  •  1
  •   Jamison Dance    14 年前

                                 #right here
    => admin_wysiwyg_path do |f| ).to_s)
    

    <%= form_for(@wysiwyg, :url => admin_wysiwyg_path) do |f| %>
    <%= f.ckeditor_textarea(:content, :width => '100%', :height => '200px') %>
    <%= f.submit%>
    <% end %>
    
        2
  •  0
  •   Trip    14 年前

    <% form_for(@wysiwyg, :url => admin_wysiwygs_url, :html => { :method => :put}) do |f| %>
      <%= f.ckeditor_textarea(:content, :width => '100%', :height => '200px') %>
      <%= f.submit%>
    <% end %>