Ruby on Rails:向控制器添加第二个自定义视图 (Rails 3)

发布于 2024-12-03 04:51:12 字数 217 浏览 1 评论 0原文

Rails 3:

我对 Rails 还很陌生,到目前为止一切都进展顺利,但我在理解所有这些路由内容时遇到了一些困难。 我现在尝试向控制器添加第二个视图,但我不想使用任何显示、编辑、索引等操作。

我想要视图的自定义名称和控制器中的自定义操作。有人可以向我解释一下如何做到这一点吗? 而且我真的很想知道如何使用“link_to”方法从另一个视图链接到它。

非常感谢任何帮助!

Rails 3:

I'm pretty new to rails and so far it's all gone really well but I'm having a little trouble understanding all of this routing stuff.
I'm now trying to add a second view to my controller but I don't want to use any of the show, edit, index, etc. actions.

I want to a custom name for the view and a custom action in the controller. Could someone please explain to me how to do this.
And also I would really like to know how to link to it from another view using the "link_to" method.

Any help is greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北座城市 2024-12-10 04:51:12

我经常使用休息并创建自定义操作和视图,我只使用路由,

  resources :news , :only => [:index] do
     collection do
        get :events
        get :hot
        get :last
      end

     member do 
       get :vote
      end

  end 

因此我创建了 3 个用于资源收集的操作和 1 个用于资源的操作,

您可以从控制台运行rake paths并查看路由列表,有为带有后缀 _path 的每个路由预定义帮助程序。文档中的示例

new_geocoder_path returns /geocoder/new
edit_geocoder_path returns /geocoder/edit
geocoder_path returns /geocoder

I often use rest and for creating custom actions and views I just use routes

  resources :news , :only => [:index] do
     collection do
        get :events
        get :hot
        get :last
      end

     member do 
       get :vote
      end

  end 

so I created 3 actions for collection of resource and 1 for resource

you can run rake routes from console and see list of routes, there are predefined helpers for every route with postfix _path. example from documentation

new_geocoder_path returns /geocoder/new
edit_geocoder_path returns /geocoder/edit
geocoder_path returns /geocoder
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文