我在视图中有这个代码来命中一个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?
这是我在这里做错了吗?
由于
答案 0 :(得分:1)
试试这个。看看你是否得到了id值,保持所有其他代码相同。
$.get("/Mandate/Index", { id=1 }, success: function(){
window.location.href = '<%=Request.Url.Scheme + "://" + Request.Url.Authority + Request.Url.AbsolutePath%>';
});