0

这是对 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");
}

当我按下相关按钮时,会调用该操作,但是当该值返回时,我希望会显示一个警报,说“成功”,但尽管我的操作被调用,但我什么也没得到。

4

2 回答 2

4

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

于 2013-09-21T14:50:29.953 回答
0
    [HttpPost]
    public ActionResult Answer(string input)
    {
        return Json("Success", JsonRequestBehavior.AllowGet);
    }
于 2013-09-21T18:11:04.070 回答