gpt4 book ai didi

javascript - 使用 haml 在 RoR 中以确认形式运行 Controller 操作

转载 作者:行者123 更新时间:2023-12-03 04:50:10 25 4
gpt4 key购买 nike

有没有可能的方法来运行 Controller 操作并在其之前确认表单?

我想问用户他/她是否真的确定要执行以下操作。确认后运行此操作。在其他情况下,什么也不做。

我已经尝试过这段代码:

= form_tag( '#', onclick: "confirm('#{text}')", :controller => :payments, :action => :pay, :subscription_id => subscription_plan) do
= hidden_field_tag 'current_subscription', subscription_plan.id
.payment_button= image_submit_tag "/images/popup/payment/#{label_img}", :value => label.to_s, data: { disable_with: "Please wait..." }

我感兴趣的是有没有办法不用 JavaScript 就能做到这一点?

最佳答案

是的,有办法

.payment_button= image_submit_tag "/images/popup/payment/#{label_img}", :value => label.to_s, data: { confirm: 'Your confirm message', disable_with: "Please wait..." }

或者另一种方式是

= form_tag( '#', onsubmit => "return confirm('Are you sure?');", :controller => :payments, :action => :pay, :subscription_id => subscription_plan) do

关于javascript - 使用 haml 在 RoR 中以确认形式运行 Controller 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42691147/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com