JQuery 未成功返回

本文关键字:返回 未成功 JQuery | 更新日期: 2023-09-27 18:32:25

这是对ajax发布我的表单的调用。

<script type="text/javascript">
    $(function () {
        $("#GetReport").click(function () {               
            var d = {input:$("#frm").serialize()};                
            $.ajax({
                type: 'POST',
                url: '/Questions/Answer',
                data: JSON.stringify(d),
                dataType: "json",
                contentType: "application/json", 
                success: function (result) {
                    alert(result);
                }
            });
        });
    });
</script>

这是我的行动

[HttpPost]
public ActionResult Answer(string input)
{
    return Content("Success");
}
当我按下相关按钮时,操作被调用,

但当值返回时,我希望显示一个警报,说"成功",但尽管我的操作被调用,但我什么也得不到。

JQuery 未成功返回

尝试dataType: "text",因为您似乎返回了一个纯字符串(不是 JSON 格式),并且dataType指定预期的响应格式,而不是请求格式。(或者只是删除dataType选项,在这种情况下,jQuery一旦看到响应格式,就会做出自己的最佳猜测。

    [HttpPost]
    public ActionResult Answer(string input)
    {
        return Json("Success", JsonRequestBehavior.AllowGet);
    }