我在控制器中有一个方法:
public ActionResult SendNotification(Guid? id=null, SendNotification notification =null)
它回应/Apps/SendNotification/{guid}?{SendNotification properties}
SendNotification 是一个具有多个字符串属性的模型。
我的问题是 SendNotification 永远不会为空。无论我如何调用该操作,.NET 似乎总是实例化一个 SendNotification 对象(所有字段都为空)。
我什至用System.Web.Http.FromUri
and进行了测试System.Web.Http.FromBody
,它仍然可以这样做。
有任何想法吗?
注意:这不是 WebApi。这是常规的 MVC。
我的项目只有默认路由:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);