Ruby on rails 3 link_to controller and action

后端 未结 3 423
长情又很酷
长情又很酷 2020-12-30 19:24

I know this is probably a pretty simple concept. I am trying to create a link to a controller and action. For example I have a link in my layout file to update a record when

3条回答
  •  隐瞒了意图╮
    2020-12-30 19:58

    Also with CSS:

    <%= link_to "Purchase", { :controller => :transactions, :action => :purchase }, { class: "btn btn-primary btn-lg", style: "width: 100%;" } %>
    

提交回复
热议问题