好的,我搜索了高低,阅读教程,观看了视频,但我仍然没有得到任何结果。我在这里读过类似的问题,但问题更复杂或缺乏答案 - 所以这里......
我有模型帐户和发票。显示帐户时,我想要与该帐户相关的“创建新发票”链接。(稍后我实际上希望在创建发票时选择一个选择字段来选择一个帐户,但我将把它留给另一个痛苦)。
这是我的模型... 帐户:
class Account < ActiveRecord::Base
attr_accessible :name, :invoice
attr_accessible :name, :invoice
has_many :invoices
end
和发票:
class Invoice < ActiveRecord::Base
belongs_to :account
attr_accessible :amount_pretax, :amount_total, :date_sent, :project, :status, :tax, :account, :account_id
end
现在,在我的 /views/accounts/show.html.erb
<p id="notice"><%= notice %></p>
<p>
<b>Name:</b>
<%= @account.name %>
</p>
<%= link_to 'New Invoice', new_invoice_path(:account_id=>@account.id) %>
<%= link_to 'Edit', edit_account_path(@account) %> |
<%= link_to 'Back', accounts_path %>
所以,发生的事情是,当我单击 New Invoice 链接时,它会显示新表单,其中填充了这个奇怪的文本的帐户字段:#<Account:0x10fe16bc0>
然后当我提交表单时,我收到此错误:
ActiveRecord::AssociationTypeMismatch in InvoicesController#create
连同这个声明:Account(#2281084000) expected, got String(#2267210740)
连同这个:
app/controllers/invoices_controller.rb:45:in `new'
app/controllers/invoices_controller.rb:45:in `create'
这是发票控制器中的内容:
def new
@invoice = Invoice.new(:account_id => params[:account_id])
respond_to do |format|
format.html # new.html.erb
format.json { render :json => @invoice }
end
end
def create
@invoice = Invoice.new(params[:invoice])
....
end
以上是我认为我出错的地方,但目前这些行的内容是我无法理解的。我完全是一个初学者,任何解决这个功能的帮助肯定会教我很多东西。
谢谢你的时间。