0

我有以下haml代码

%input{type: "button", value: "Finish"}= link_to "", stop_time_entry_path(time_entry), remote: true

单击按钮时如何访问 stop_time_entries_path(time_entry)?

看起来很简单,但我想不通

4

2 回答 2

1
= link_to stop_time_entry_path(time_entry), remote: true do
    %input{type: "button", value: "Finish"}

这就是解决方案。

于 2012-10-23T14:48:15.863 回答
0

有一个button_to Rails 助手。试用:

button_to "Finish", stop_time_entries_path(time_entry), remote: true

于 2012-10-23T08:49:13.340 回答