Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rails 在提交表单时会自动禁用提交按钮。当您需要在执行验证后重新启用它时,就会出现问题。
下面是重新启用提交按钮的快速修复。注意:您必须使用 setTimeout 来防止竞争条件。
setTimeout(function(){ document.querySelectorAll('[data-disable-with]').forEach(function(element){ $.rails.enableElement(element); }); });