gpt4 book ai didi

ruby-on-rails - :as in rails routes. rb

转载 作者:数据小太阳 更新时间:2023-10-29 06:20:22 26 4
gpt4 key购买 nike

config/routes.rb 中,我都试过了:

root :to => 'things#index', :as => 'things'

root :to => 'things#index'

当我点击 http://localhost:3000/ 时,这两种方法都有效,而且似乎没有什么不同。

:as 选项有什么用?

最佳答案

:as 选项形成一个命名路由。

通常用于非根路由。例如:

match '/search' => 'search#search', :as => 'search' # SearchController#search

然后你可以这样做:

<%= link_to search_path, 'Click Here to Search!' %>

search_pathsearch_url 的定义是因为 :as

对于根路由,你并不需要 :as 因为 URL 助手 root_pathroot_url 是为你定义的 rails 。

关于ruby-on-rails - :as in rails routes. rb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4696229/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com