给定像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中实现这一点?
由于
答案 0 :(得分:7)
如果我理解正确,您希望确保代替:id
字段,Rails使用路由中的:uuid
字段。
这很容易实现,在模型中否决了to_param
方法:
def Thread
def to_param
uuid
end
end
在控制器内部,您必须编写如下内容:
thread = Thread.find_by_uuid(params[:id])
希望这有帮助。
答案 1 :(得分:-1)
:id
可以更改为您喜欢的任何内容。您在路由中选择的名称会填充params
哈希,因此如果您将其更改为:uuid
,则只需相应地更改您的控制器(o = Model.find_by_uuid(params[:uuid])
)