语法错误,意外的"<",预期')'



我正在尝试在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| %>

这就是它说它的来源,但我看不出有什么问题。

这是形式本身,这就是"<"的来源。

    <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

如果你通过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 将您的评论直接放入生成的代码中,而不关心或理解其效果。这应该告诉您为什么会看到该特定错误消息。

这里有一些教训:

  1. ERB 中的 Ruby 注释与 Ruby 代码中的注释不太相似。ERB处理器并不真正理解Ruby,他们只是抛出一些文本,试图生成有效的Ruby代码。
  2. ERB也不理解HTML注释,HTML注释只是更多的文本。
  3. 不要注释掉代码来禁用它,而是使用修订控制并删除代码。

如果删除 HTML 注释中的 Ruby 注释:

<!-- <h4><%= employee.first_name %></h4></br> -->

然后事情应该又开始工作了。或者更好的是,删除整个 HTML 注释,因为它只是碍事。

尝试将表单标签包装在" () "中,URL 参数应如下所示:

<%= form_for(:pr_add_ons_deductions, :url => {:controller => "your-controller-name", :action => "your-action-name"}) do |f| %>

相关内容

  • 没有找到相关文章

最新更新