在我的 Rails 应用程序中,我有一个这样的创建按钮
def create
@client = Client.find(params[:client_id])
@inventory = @client.inventories.create(params[:inventory])
redirect_to client_path(@client)
end
当创建库存时(作为客户端的一部分,例如客户端 has_many 库存,库存属于_to 客户端),库存将添加到数据库中的客户端并重定向到 localhost:3000/client/(无论客户端 ID 是什么)
但是,我的程序有问题,因为尽管它进行了正确的重定向,但我推送创建后地址栏中的地址是 localhost:3000/client/1/inventories/1... 我只希望它是 localhost:3000/client/1/ 。如果我确实尝试访问 localhost:3000/client/1/inventories/1,它会给我一个错误,因为我没有库存节目。
它怎么可能进行正确的重定向,但我的浏览器中显示了错误的 URL?顺便说一句,这是在我的 routes.rb 中,这对我来说似乎不是问题。
resources :clients do
resources :inventories
end
为什么我的应用程序会这样?有接盘侠吗?:]
编辑