在asp.net mvc中对控制器进行简单的Ajax调用

时间:2013-04-24 07:34:36

标签: c# jquery asp.net asp.net-mvc asp.net-mvc-2

我正在尝试使用ASP.NET MVC Ajax调用。

控制器:

public class AjaxTestController : Controller
{
    //
    // GET: /AjaxTest/
    public ActionResult Index()
    {
        return View();
    }

    public ActionResult FirstAjax()
    {
        return Json("chamara", JsonRequestBehavior.AllowGet);
    }   
}

查看:

<head runat="server">
    <title>FirstAjax</title>
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            var serviceURL = '/AjaxTest/FirstAjax';

            $.ajax({
                type: "POST",
                url: serviceURL,
                data: param = "",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: successFunc,
                error: errorFunc
            });

            function successFunc(data, status) {     
                alert(data);
            }

            function errorFunc() {
                alert('error');
            }
        });
    </script>
</head>

我只需要使用返回数据的控制器方法打印警报。上面的代码只是在我的视图上打印“chamara”。警报未触发。

更新

我修改了我的控制器,如下所示,它开始工作。我不清楚它为什么现在正在工作。有人请解释一下。参数“a”没有关联我添加它因为我不能添加两个方法具有相同的方法名称和参数。我认为这可能不是解决方案,但它的工作

public class AjaxTestController : Controller
    {
        //
        // GET: /AjaxTest/
        [HttpGet]
        public ActionResult FirstAjax()
        {
            return View();
        }

        [HttpPost]
        public ActionResult FirstAjax(string a)
        {
            return Json("chamara", JsonRequestBehavior.AllowGet);
        }
    }

9 个答案:

答案 0 :(得分:49)

删除数据属性,因为您不是POSTING任何服务器(您的控制器不期望任何参数)。

在您的AJAX方法中,您可以使用Razor并使用@Url.Action而不是静态字符串:

$.ajax({
    url: '@Url.Action("FirstAjax", "AjaxTest")',
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: successFunc,
    error: errorFunc
});

来自您的更新:

$.ajax({
    type: "POST",
    url: '@Url.Action("FirstAjax", "AjaxTest")',
    contentType: "application/json; charset=utf-8",
    data: { a: "testing" },
    dataType: "json",
    success: function() { alert('Success'); },
    error: errorFunc
});

答案 1 :(得分:22)

完成更新后,

  1. 首次使用默认的HttpGet请求调用FirstAjax操作 并呈现空白的Html视图。 (早先你没有)
  2. 稍后加载该视图的DOM元素时,您的Ajax调用将被触发并显示警告。
  3. 之前您只是在不渲染任何HTML的情况下将JSON返回给浏览器。现在它呈现了一个HTML视图,它可以获取您的JSON数据。

    您无法直接呈现JSON,而不是HTML。

答案 2 :(得分:11)

使用Razor通过调用您的操作动态更改您的网址:

$.ajax({
    type: "POST",
    url: '@Url.Action("ActionName", "ControllerName")',
    contentType: "application/json; charset=utf-8",
    data: { data: "yourdata" },
    dataType: "json",
    success: function(recData) { alert('Success'); },
    error: function() { alert('A error'); }
});

答案 3 :(得分:4)

这是你的更新问题。

由于您不能使用具有相同名称和签名的两个方法,因此必须使用ActionName属性:

更新:

[HttpGet]
public ActionResult FirstAjax()
{
    Some Code--Some Code---Some Code
    return View();
}

[HttpPost]
[ActionName("FirstAjax")]
public ActionResult FirstAjaxPost()
{
    Some Code--Some Code---Some Code
    return View();
}

请参阅this链接,以获取有关方法如何成为行动的进一步参考。非常好的参考。

答案 4 :(得分:4)

首先,不需要在一个页面中有两个不同版本的jquery库,“1.9.1”或“2.0.0”足以使ajax调用工作..

这是您的控制器代码:

    public ActionResult Index()
    {
        return View();
    }

    public ActionResult FirstAjax(string a)
    {
        return Json("chamara", JsonRequestBehavior.AllowGet);
    }   

这是您的视图的样子:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

<script type="text/javascript">
$(document).ready(function () {
    var a = "Test";
    $.ajax({
        url: "../../Home/FirstAjax",
        type: "GET",
        data: { a : a },
        success: function (response) {
            alert(response);
        },
        error: function (response) {
            alert(response);
        }
    });
});
</script>

答案 5 :(得分:2)

如果你只需要在你的Ajax Call中点击C#方法,你需要传递两个问题类型和url如果你的请求是get,那么你只需要指定url。请按照下面的代码工作正常。

C#代码:

    [HttpGet]
    public ActionResult FirstAjax()
    {
        return Json("chamara", JsonRequestBehavior.AllowGet);
    }   

获取请求的Java脚本代码

    $.ajax({
        url: 'home/FirstAjax',
        success: function(responce){ alert(responce.data)},
        error: function(responce){ alert(responce.data)}
    });

如果发布请求的Java脚本代码以及[HttpGet]到[HttpPost]

        $.ajax({
            url: 'home/FirstAjax',
            type:'POST',
            success: function(responce){ alert(responce)},
            error: function(responce){ alert(responce)}
        });

注意:如果FirstAjax在同一个控制器中,那么您的View Controller就不需要在url中使用Controller名称。比如url: 'FirstAjax',

答案 6 :(得分:1)

查看;

 $.ajax({
        type: 'GET',
        cache: false,
        url: '/Login/Method',
        dataType: 'json',
        data: {  },
        error: function () {
        },
        success: function (result) {
            alert("success")
        }
    });

控制器方法;

 public JsonResult Method()
 {
   return Json(new JsonResult()
      {
         Data = "Result"
      }, JsonRequestBehavior.AllowGet);
 }

答案 7 :(得分:0)

而不是url: serviceURL, 使用

url: '<%= serviceURL%>',

您是否将2个参数传递给successFunc?

function successFunc(data)
 {
   alert(data);
 }

答案 8 :(得分:0)

在global.asax中添加“JsonValueProviderFactory”:

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    ValueProviderFactories.Factories.Add(new JsonValueProviderFactory());
}