gpt4 book ai didi

javascript - 如果在 yii 中取消它,如何在 Controller 中放置确认警报并重定向到特定链接

转载 作者:行者123 更新时间:2023-11-30 16:52:38 25 4
gpt4 key购买 nike

如果单击取消按钮,我想在 Controller 中放置确认警报并重定向到特定链接。我的 admin.php 代码是:

         array(
'header' => 'Action',
'class' => 'CButtonColumn',
'template' => '{update}',
'updateButtonUrl' => 'Yii::app()->createUrl("attendance/inout", array("id"=>$data->supplier_master_id))'
)

这里我必须在 Controller 中放入确认警报,因为其中还放入了一些额外的条件。

我的 Controller 代码是:

public function actionInout($id) { 
?>
<script>
if(confirm("Do you want to add record?")) {
// means proceed
} else {
// Should be redirect back to the grid view
}
</script>
<?php // further code

最佳答案

我自己找到了答案

因为我必须在 Controller 中放入确认警报,所以我在 Controller 中做了这样的操作:

   public function actionInout($id,$final_status) { ?>
<script>
if(!confirm("Do you want to check- <?php echo $final_status; ?> to well sites.")) {
window.location.href = url; // back url
} else {
window.location.href = url1; // further process
}
</script>
<?php // code

关于javascript - 如果在 yii 中取消它,如何在 Controller 中放置确认警报并重定向到特定链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30274031/

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