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