在rails中转换form_tag的问题

时间:2010-03-23 04:44:37

标签: ruby-on-rails ruby forms tags

我是ruby和rails的新手,我在使用Ruby on Rails电子商务时遇到了问题。 (是的,这是一本旧书)。

我有一个视图的这两个代码集:

new.html.erb:

<%= form_tag :action=> 'create' do -%>
<%= render :partial => 'form' %>
 <%= submit_tag 'Create' %>
 <%= end -%>

<% link_to 'Back', :action => 'index' %>

_form.html.erb:

<% error_messages_for 'supplier' %>

<p><label for="supplier_first_name">First Name</label><br/>
<%= text_field 'supplier', 'first_name' %></p>

<p><label for="supplier_last_name">Last Name</label><br/>
<%= text_field 'supplier', 'last_name' %></p>

但是虽然我添加了do选项但它不会显示。它一直给我这个错误:

C:/rails/emporium/app/views/admin/supplier/new.html.erb:1: syntax error, unexpected ')'
...orm_tag :action=> 'create' do ).to_s)
...                               ^
C:/rails/emporium/app/views/admin/supplier/new.html.erb:4: syntax error, unexpected keyword_end
; @output_buffer.concat(( end ).to_s)
                             ^
C:/rails/emporium/app/views/admin/supplier/new.html.erb:5: syntax error, unexpected tIVAR, expecting ')'
@output_buffer.concat "\n"
              ^
C:/rails/emporium/app/views/admin/supplier/new.html.erb:7: syntax error, unexpected keyword_ensure, expecting keyword_end
C:/rails/emporium/app/views/admin/supplier/new.html.erb:9: syntax error, unexpected $end, expecting ')'

有人可以建议我如何解决这个问题,因为我还没有找到谷歌答案。

由于

吉格

1 个答案:

答案 0 :(得分:5)

看起来你在<%= %><% %>混淆了几个地方。您需要将<% %>form_tag一起使用,将<%= %>link_toerror_messages_for一起使用。后两个方法返回它们的输出,而form_tag自动将其输出附加到输出缓冲区(对于任何接受块的帮助程序通常都是如此)。

试试这个:

<强> new.html.erb:

<% form_tag :action => create do %>
<%= render :partial => "form" %>
<%= submit_tag "Create" %>
<% end %>

<%= link_to "Back", :action => "index" %>

<强> _form.html.erb:

<%= error_messages_for :supplier %>