- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对编程很陌生,并且正在通过官方 Getting Started guide 工作。 .这将指导新的 RoR 程序员完成一个实际的博客应用程序,该应用程序涉及包含许多评论的 CRUD 文章。
article_path 经常出现,但我完全不知道它的作用、含义、使用方式等。
以下是指南如何使用 article_path 的一些示例:
<%= form_for :article, url: articles_path do |f| %>
(在 app/views/articles/new.html.erb 中)
<%= link_to 'Back', articles_path %>
(也在 app/views/articles/new.html.erb 中)
def destroy
@article = Article.find(params[:id])
@article.destroy
redirect_to articles_path
end
(在 app/controllers/articles_controller.rb 中)
class CommentsController < ApplicationController
def create
@article = Article.find(params[:article_id])
@comment = @article.comments.create(comment_params)
redirect_to article_path(@article)
end
(在 app/controllers/comments_controller.rb 中)
非常感谢您的解释,因为我想完全理解特定代码行的作用。
感谢您的宝贵时间
最佳答案
articles_path
将产生类似 http://yourserver.com/articles
的内容,它将与您的 ArticlesController
和 相关联索引
Action 。
因此,article_path(@article)
将生成类似 http://yourserver.com/articles/1234567
的内容,该内容将与您的 ArticlesController
和 show
操作并为 ID 为 1234567
的文章生成页面。
您也可以在命令行上执行 rake routes
并查看所有详细信息
关于ruby-on-rails - article_path 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33978251/
我对编程很陌生,并且正在通过官方 Getting Started guide 工作。 .这将指导新的 RoR 程序员完成一个实际的博客应用程序,该应用程序涉及包含许多评论的 CRUD 文章。 arti
我是一名优秀的程序员,十分优秀!