我试图在Ruby on Rails中构建一个表单。问题是,它一直给我一个错误的语法错误,意外的'<'期待')'当我开始自己的桌子。
这是表格上方的行:
<% @employee = SbmEmployee.search(@employee_id).first %>
<!-- <h4><%= employee.first_name #+ " " + employee.middle_name + " " employee.last_name %></h4></br> -->
这是表格的开头:
<%= form_for :pr_add_ons_deductions, url: { action: "create" } do |f| %>
这是它说它来自的地方,但我没有看到它有什么问题。
这里是表格本身,其中&#39;&lt;&#39;来自。
<table summary="Section from fields">
<tr>
<th>Resultant</th>
<th><%= f.label(:type_id) %></th>
<th><%= f.label(:description) %></th>
<th><%= f.label(:amount) %></th>
<th><%= f.label(:recurrence) %></th>
<th><%= f.label(:end_date) %></th>
</tr>
<tr>
<td><select name="resultant" onchange="setResultant()"> <!--TODO-->
<option value="Add">Add On</option>
<option value="Deduct">Deduction</option>
</td>
<td><%= select(:pr_add_ons_deductions, :type_id, PrAddOnsDeductionsType.select_options) %></td>
<td><%= f.text_area(:description, :size => '40x2')%></td>
<td><%= f.text_field(:amount) %></td>
<td><%= f.text_field(:recurrence) %></td>
<td><%= date_select(:pr_add_ons_deductions, :end_date, :value => Time.now.strftime("%m/%d/%Y")) %></td>
</tr>
</table>
<div class="form-buttons">
<%= submit_tag("Create Entry") %>
</div>
<% end %>
这里是控制器的内容:
def entry
@employee_id = params[:id]
@entry = PrAddOnsDeduction.new(:sbm_employee_id => params[:id])
end
def create
@payroll = PrAddOnsDeduction.new(params)
if @payroll.save
flash[:notice] = "Entry Created Successfully."
@payroll.save!
redirect_to(:action => "entry")
else
render("entry")
end
end
除此之外,还有一个params方法在控制器中是私有的:
def params
params.require(:pr_add_ons_deductions).permit(:type_id, :description, :amount, :recurrence, :end_date, :sbm_employee_id)
end
这是我使用的模型:
class SbmEmployee < ActiveRecord::Base
self.table_name = "sbm_employees"
def self.search(id)
self.where("id = #{id}")
end
end
答案 0 :(得分:2)
如果你通过erubis -x
运行一些ERB(注意:Rails使用Erubis而不是普通的ERB)来查看它被转换成什么Ruby,你会看到类似这样的内容:
_buf = ''; @employee = SbmEmployee.search(@employee_id).first
_buf << '<!-- <h4>'; _buf << ( employee.first_name #+ " " + employee.middle_name + " " employee.last_name ).to_s; _buf << '</h4></br> -->
'; _buf << ( form_for :pr_add_ons_deductions, url: { action: "create" } do |f| ).to_s; _buf << '
';
这里有第二行感兴趣。 Erubis已将您的评论直接发送到生成的代码中,而无需关心或理解其效果。这应该告诉你为什么你会看到那个特定的错误信息。
这里有一些教训:
如果删除HTML注释中的Ruby注释:
<!-- <h4><%= employee.first_name %></h4></br> -->
然后事情应该重新开始。或者更好的是,删除整个HTML注释,因为它只是在路上。
答案 1 :(得分:0)
尝试将表单标记包装在“()
”中,并且URL参数应如下所示:
<%= form_for(:pr_add_ons_deductions, :url => {:controller => "your-controller-name", :action => "your-action-name"}) do |f| %>