了解路径模块与视图和控制器

时间:2015-05-17 11:02:18

标签: ruby-on-rails

我已经使用方法推荐和索引创建了控制器配置文件,然后我在app/views/profiles/testimonials.html.erb

中创建了它的视图

routes.rb文件中我有

get 'profiles/testimonials', to: 'profiles#testimonials

然后我创建了一个这个视图的链接,就像这个

<%= link_to "Testimonials", :controller => "profiles", :action => "testimonials" %>

我可以通过运行rake routes命令看到以下路径

profiles_testimonials GET    /profiles/testimonials(.:format) profiles#testimonials

当我点击浏览器中的链接时,我收到错误

The action 'show' could not be found for ProfilesController

我不明白方法show在图片中的位置,我不想创建一个show方法。

0 个答案:

没有答案