如何在asp.net mvc中使用$ .get方法

时间:2011-08-06 01:05:01

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

我在视图中有这个代码来命中一个ActionResult

 ClearFilters = function () {
        $.get("/Mandate/Index/1");
        window.location.href = '<%=Request.Url.Scheme + "://" + Request.Url.Authority + Request.Url.AbsolutePath%>';
    }

我的控制器方法

Public ActionResult Index(int? id)
{
     //some code
}

使用此代码我能够点击索引操作结果,但我没有得到int id值1?

这是我在这里做错了吗?

由于

1 个答案:

答案 0 :(得分:1)

试试这个。看看你是否得到了id值,保持所有其他代码相同。

$.get("/Mandate/Index", { id=1 }, success: function(){
   window.location.href = '<%=Request.Url.Scheme + "://" + Request.Url.Authority + Request.Url.AbsolutePath%>';   
});