我有以下haml代码
%input{type: "button", value: "Finish"}= link_to "", stop_time_entry_path(time_entry), remote: true
单击按钮时如何访问 stop_time_entries_path(time_entry)?
看起来很简单,但我想不通
我有以下haml代码
%input{type: "button", value: "Finish"}= link_to "", stop_time_entry_path(time_entry), remote: true
单击按钮时如何访问 stop_time_entries_path(time_entry)?
看起来很简单,但我想不通
= link_to stop_time_entry_path(time_entry), remote: true do
%input{type: "button", value: "Finish"}
这就是解决方案。
有一个button_to Rails 助手。试用:
button_to "Finish", stop_time_entries_path(time_entry), remote: true