0
我正在研究Rails中的API,並且遇到了困難。我錯過了我想象中的一些愚蠢,但我看不到它。Rails - 與API的關聯
https://gist.github.com/3989396
我不能讓協會在item.json創建關聯過去了。我認爲Rails會把這些掛鉤起來。
我正在研究Rails中的API,並且遇到了困難。我錯過了我想象中的一些愚蠢,但我看不到它。Rails - 與API的關聯
https://gist.github.com/3989396
我不能讓協會在item.json創建關聯過去了。我認爲Rails會把這些掛鉤起來。
的帳戶的關係需要修復,像這樣:
item.rb的:
belongs_to :expense_account, class_name: "Account"
belongs_to :income_account, class_name: "Account"
account.rb:
has_many :items, inverse_of: :expense_account
has_many :items, inverse_of: :income_account