如何在ajax调用中将错误消息传递给mvc视图

时间:2013-10-14 01:45:11

标签: javascript jquery ajax asp.net-mvc asp.net-mvc-4

我正在使用ajax在mvc按钮单击事件上调用控制器操作方法。控制器动作方法具有验证逻辑,如果失败的用户应该被通知错误。我不确定如何在MVC中实现这一点。有没有办法可以从控制器向ajax成功事件发送错误信息?。

 Controller Action Method
    [AcceptVerbs(HttpVerbs.Post)]
    public ViewResult Index(ProfileSnapshotRequestModel pspm)
    {

        // Do something 
       return Json(new { success = true });
    }

MVC视图按钮单击

   $("#copyData").click(function() {

            var selectedRowId = $('#ServersWS').jqGrid('getGridParam', 'selrow');
            var rowData = jQuery("#ServersWS").jqGrid('getRowData', selectedRowId);
            $("#MainDiv").prop('disabled', true);
            var url = '@Url.Action("Index")';
            HideElements();
            $.ajax({
                url: url,
                data: {
                            BaseEnvtId: $("#SelectedEnvironmentID").val(),
                            BaseVersionId: $("#SelectedVersionID").val(),
                            BaseProfileId: rowData['ProfileId'],
                            NewEnvtId: $("#SelectedEnvironmentID2").val(),
                            NewVersionId: $("#SelectedVersionID2").val(),
                            NewProfileId: $("#SelectedProfileID2").val(),
                },
                type: 'POST',
                datatype: 'json',
                success: function(data) {
                    document.getElementById('displaySuccess').style.display = 'block';
                    $("#ProfileCopyDiv").prop('disabled', true);
                    $("#MainDiv").prop('disabled', false);
                },
                error: function() { alert('something bad happened'); }
            });
        });

1 个答案:

答案 0 :(得分:0)

我能够通过将控制器操作返回类型更改为操作结果来解决它,然后使用Json对象返回我想要的数据 - 例如

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Index(ProfileSnapshotRequestModel pspm)
    {
         // Do something 
        return Json(new { success = true });
    }