作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了模型、 View 和 Controller :
$ rails generate scaffold Post name:string title:string content:text
我运行服务器,如果我在浏览器中打开 http:\localhost:3000\posts,我会看到帖子列表。现在我需要创建指向此页面的链接。像这样的东西:
<%= link_to("settings", { :controller => 'groups', :action => 'index'}) %>
但是我在打开这个页面时出错:
Couldn't find Group with ID=index
如何创建指向 http:\localhost:3000\posts 的链接,在这种情况下我应该使用哪个操作?
最佳答案
我认为路径助手在这些情况下非常出色。你可以这样做:
<%= link_to("Posts", posts_path) %>
posts_path 在这种情况下将链接到 http://localhost:3000/posts
当你在 routes.rb 中使用 use resources :posts 时,你会自动获得一些路径助手。例如:
posts_path # /posts
post_path(@post) # /posts/1
edit_post_path(@post) # /posts/1/edit
new_post_path # /posts/new
关于ruby-on-rails - 链接到资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5646216/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!