ruby-on-rails – routes.rb,如何为路径设置不同的主键?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – routes.rb,如何为路径设置不同的主键?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给定像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])

希望这可以帮助.

原文链接:https://www.f2er.com/ruby/270199.html

猜你在找的Ruby相关文章