我正在使用cakephp 3.x有很多方法可以为添加,编辑等操作提交表单。我已经面临用户通过点击多个提交单个表单的问题按钮上的时间。
cakephp 3.x是否提供了随时停止提交表单多次的工具?
答案 0 :(得分:0)
完成表单提交后重定向页面的最佳方法。这将解决问题。
为此目的使用$this->redirect()
功能。
您可以在http://book.cakephp.org/2.0/en/controllers.html
找到更多相关信息在“ 流程控制 ”部分
中答案 1 :(得分:0)
$( "form" ).submit(function() {
$("button id will come here").attr('disabled','disabled');
});