如何创建MVC控制器的确认框?(How to create the confirm box in m

2019-08-17 20:28发布

我需要建立在MVC控制器的确认框? 使用这个“是”或“不”值,我需要在我的控制器执行的操作。 我们该怎么办?

示例代码:

    public ActionResult ActionName(passing value)
        {
             // some code 
             message box here
               if (true)
                     { true code}
              else { else code}
       }

Answer 1:

你不创建控制器确认框,但肯定在视图中,使用JQuery对话框。 该控制器已经在服务器内部,所以你没有用户干预存在。 你的看法,是用户会选择的选项,输入信息后,点击按钮的地方......你可以拦截点击按钮,以显示该对话框,只有提交帖子获得点击按钮“是”的时候。 JQuery的对话框要求(的jquery.js,jQuery的ui.js,jquery.ui.dialog.js)在你的页面引用的脚本。

例:

$(function(){
    $("#buttonID").click(function(event) {
        event.preventDefault();
        $('<div title="Confirm Box"></div>').dialog({
            open: function (event, ui) {
                $(this).html("Yes or No question?");
            },
            close: function () {
                $(this).remove();
            },
            resizable: false,
            height: 140,
            modal: true,
            buttons: {
                'Yes': function () {
                    $(this).dialog('close');
                    $.post('url/theValueYouWantToPass');

                },
                'No': function () {
                    $(this).dialog('close');
                    $.post('url/theOtherValueYouWantToPAss');
                }
            }
        });
    });
});


Answer 2:

你可以用ActionLink的做到这一点

@Html.ActionLink(
    "Delete", 
    "DeleteAction", 
    "Product", 
    new { confirm = true, other_parameter = "some_more_parameter" }, 
    new { onclick = "return confirm('Do you really want to delete this product?')" })

如果用户确认,那么链路参数将传递到控制器中的操作方法。

public ActionResult DeleteAction(bool confirm, string other_parameter)
{
    // if user confirm to delete then this action will fire
    // and you can pass true value. If not, then it is already not confirmed.

    return View();
}

更新

你不能显示控制器端消息框。 但你可以做到这一点像以下

public ActionResult ActionName(passing value)
{
     // some code 
     message box here
     if (true){ ViewBag.Status = true }
     else { ViewBag.Status = false}

     return View();
}

并查看

<script type="text/javascript">
function() {
    var status = '@ViewBag.Status';
    if (status) {
        alert("success");
    } else {
        alert("error");
    }
}
</script>

但所有这些代码是不优雅的方式。 这是你的之情况的解决方案。



Answer 3:

是的,你可以做到这一点@Html.ActionLink作为AliRızaAdıyahşi曾这样评价。

订阅onclick的事件@Html.ActionLink

下面是执行:

@Html.ActionLink("Click here","ActionName","ControllerName",new { @onclick="return Submit();"})

而在JavaScript写的confirm框。

<script type="text/javascript">
function Submit() {
        if (confirm("Are you sure you want to submit ?")) {
            return true;
        } else {
            return false;
        }
    }
</script>

编辑

尝试这样的:

<script type="text/javascript">
    function Submit() {
            if (confirm("Are you sure you want to submit ?")) {
                document.getElementById('anchortag').href += "?isTrue=true";
            } else {
                document.getElementById('anchortag').href += "?isTrue=false";
            }
            return true;
        }
</script>

@Html.ActionLink("Submit", "Somemethod", "Home", new { @onclick = "return Submit();", id = "anchortag" })

现在,在你的控制器做基础上,一些操作isTrue查询字符串

public ActionResult Somemethod(bool isTrue)
        {
            if (isTrue)
            {
                //do something
            }
            else
            {
                //do something
            }
            return View();
        }


Answer 4:

我可以证实,AliRızaAdıyahşi的解决方案效果很好。

您还可以自定义该消息。 在我的情况下,我们使用MVC和剃刀,所以我可以这样做:

<td>
@Html.ActionLink("Delete", 
    "DeleteTag", new { id = t.IDTag }, 
    new { onclick = "return confirm('Do you really want to delete the tag " + @t.Tag + "?')" })
</td>

这表明,在其指定的某个记录的对话框。 也可能是能够给予确认对话框标题,还没有尝试过呢。



Answer 5:

  <a href="@Url.Action("DeleteBlog", new {id = @post.PostId})" class="btn btn-sm btn-danger" onclick="return confirm ('Are you sure want to delete blog?');">
                                <i class="glyphicon glyphicon-remove"></i> Delete



文章来源: How to create the confirm box in mvc controller?