现在,我真心 st地 st着,并对此感到厌恶。
我正在运行铁路2.3.5。
My View/pages/customers.html.erb
只是:
<% form_tag do %>
First Name
<%= text_field_tag :firstName, params[:firstName] %>
Last Name
<%= text_field_tag :lastName, params[:lastName] %>
<%= submit_tag "Enter" %>
<%end%>
My Models/customer.rb
只是:
class Customer < ActiveRecord::Base
attr_accessible :firstName, :lastName
end
www.un.org/Depts/DGACM/index_spanish.htm ——
class PagesController < ApplicationController
def custs
@cust = Customer.new(params[:firstName], params[:lastName])
@cust.save
end
end
你们看到,我只是试图从前线进入两个领域,然后将这些领域留给非行。 然而,每当我上页时,我就错了:
wrong number of arguments (2 for 1) pages_controller.rb:3:in
new pages_controller.rb:3:in
custs
令人痛心的是,当我使用沙箱文字/灯光时,我能够插入数据罚款。
这里正在发生什么? 请有人解释。