2

ユーザーがボタンを 2 回クリックして、うっかり 2 回投稿してしまうのを防ぐには、どのような方法がありますか? レール固有のメソッドはありますか?

4

1 に答える 1

3

The button_tag helper includes an option, :disable_with. Using this option will disable the button (using unobtrusive JavaScript) when the form is submitted, preventing additional clicks.

于 2012-08-09T01:01:11.560 に答える