我有一个jquery $ .getJson调用一个返回json的控制器动作。
该操作接受3个参数:
public async Task<ActionResult> MyAction(string id, string name, string age)
{
.... code here
}
和JavaScript
$.getJson('@Url.Action("MyAction", "MyController", new { @id= Model.Id, @name=Model.Name, @age=Model.Age })')
问题是,在操作中,只有age is null
提供了Id和Name值。年龄值是。如果我只是在页面上显示年龄
@ Model.Age
,则显示的值...不知何故未设置为操作。
路线如下:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
基本上只有前2个参数被发送到动作。第三个是null。我有一种感觉是这里的路线问题,但无法弄明白。
答案 0 :(得分:2)
您正在向控制器发送JSON对象,为什么不发送3个参数?否则你的控制器动作确实需要这样的东西来满足你的要求:
public class DataClass{
public string id;
public string name;
public string age;
}
更改您的控制器:
public async Task<ActionResult> MyAction(DataClass data)
{
.... code here
}
答案 1 :(得分:0)
我实际上通过向RouteConfig.cs类添加一个新路由来解决这个问题:
现在看起来像这样。请注意新名称和年龄参数:
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "UserRoute",
url: "{
controller}/{action}/{id}/{name}/{age}",
defaults: new {
controller = "Home",
action = "Index",
id = UrlParameter.Optional,
name = UrlParameter.Optional,
age = UrlParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new {
controller = "Home",
action = "Index",
id = UrlParameter.Optional }
);
}
}