我知道这可能是一个非常简单的概念。我正在尝试创建一个控制器和操作的链接。例如,我的布局文件中有一个链接,用于在单击链接时更新记录,因此我需要能够链接到控制器和操作。我该如何做到这一点?
答案 0 :(得分:54)
link_to "Label", :controller => :my_controller, :action => :index
请参阅url_for。
答案 1 :(得分:6)
还有CSS:
<%= link_to "Purchase", { :controller => :transactions, :action => :purchase }, { class: "btn btn-primary btn-lg", style: "width: 100%;" } %>
答案 2 :(得分:0)
如果您也想传递参数,请这样做
<%= link_to student.name, controller: "users", action: "show", id: student.id, partial: "profile" %>