ルビーの新機能です。findメソッドで変数を呼び出す方法
車の情報についてループ内にクライアント名を取得しようとしています。 carデータには、クライアントのIDである "belongs_to"という列があります。
重要な行:<td><%= @client.find(car.belongs_to) %></td>
コントローラ:
def index
@cars = Car.all
@client = Client.all
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @cars }
end
end
どのようにあなたたちはこれをしますか?
を見て非常に良いではどうもありがとうございました! – criticerz