我的模型
class Client < ActiveRecord::Base
attr_accessible :name
has_many :bookings
validates_presence_of :name
end
class Agent < ActiveRecord::Base
attr_accessible :name
has_many :bookings
validates_presence_of :name
end
class Booking < ActiveRecord::Base
attr_accessible :booking_time, :agent_id
belongs_to :client
belongs_to :agent
validates_presence_of :booking_time
end
这让我头疼我希望从代理和客户的角度查看预订,但是预订控制器的索引方法如何处理路由?
agents/agent_id/bookings and clients/client_id/bookings
?第二个问题:只有客户创建预订,但我如何正确维护预订和代理之间的关系?
def create
@client = Client.find(params[:client_id])
@booking = @client.bookings.build(params[:booking])
@agent = Agent.find(params[:booking][:agent_id])
@agent.bookings << @booking
if (@booking.save and @agent.save)
redirect_to [@client, @booking]
else
render :action => "new", :notice => "Booking could not be created"
end
end
最佳答案
至于第一个问题,您只需将其放在routes(config/routes.rb)中:
resources :agents do
resources :bookings
end
resources :clients do
resources :bookings
end
这将在您的url上创建嵌套。有关导轨导轨的更多信息:http://guides.rubyonrails.org/routing.html
至于第二个问题:我不知道你想干什么。这真的取决于你打算从经纪人和预订中拯救什么我不知道他们之间的行为是如何运作的。
你是如何测试你的应用程序的?