我已经使用方法推荐和索引创建了控制器配置文件,然后我在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
方法。