我是 Rails 新手,我正在关注实用敏捷这本书。当我考虑客户详细信息时,我面临着这种错误......
wrong number of arguments (3 for 2)
我在views/orders/_form.html.erb中的代码
</div>
<div class="field">
<%= f.label :pay_type %><br />
<%= f.text_field :pay_type, Order::PAYMENT_TYPES,
:prompt => 'select a payment method' %>
</div>
<div class="actions">
我在 app/model/order.rb 中给出了论点
class Order < ActiveRecord::Base
attr_accessible :email, :address, :name, :pay_type
PAYMENT_TYPES = [ 'Check', 'Credit card', 'Purchase order' ]
end
我能得到任何帮助吗!!