给定像Thread(id,uuid)这样的模型uuid是唯一生成的标识符.我想更改默认路由:
edit_thread GET /threads/:id/edit(.:format) {:action=>"edit",:controller=>"threads"} thread GET /threads/:id(.:format) {:action=>"show",:controller=>"threads"} PUT /threads/:id(.:format) {:action=>"update",:controller=>"threads"}
不使用:id但是对用户:uuid —如何在Rails / routes.rb中实现这一点?
谢谢
解决方法
如果我理解正确,你想确定而不是:id字段,Rails使用路由中的:uuid字段.
这很容易实现,在你的模型中否决了to_param方法:
def Thread def to_param uuid end end
在你的控制器里,你必须写下这样的东西:
thread = Thread.find_by_uuid(params[:id])
希望这可以帮助.