我在 ASP.NET MVC 2 预览 1 中使用此代码:
public ActionResult List(long id, [DefaultValue(0)] long? commentId)
{
var model = UserComment.ForRefId(id);
PageTitle = string.Format("Comments for '{0}'",
SetCommentThread(id).Subject);
ViewData[MvcApplication.SAnchor] = commentId;
return View("List", model);
}
当我使用有效的 URL 参数(例如“/Comment/List/22638”)时,我收到错误消息:
参数字典包含方法“System.Web.Mvc.ActionResult List(Int64, System.Nullable 1[System.Int64]”的参数“commentId”的无效条目
1[System.Int64])' in 'ThreadsMVC.Controllers.CommentController'. The dictionary contains a value of type 'System.Int32', but the parameter requires a value of type 'System.Nullable
。参数名称:参数
如果我将声明更改为:
public ActionResult List(long id, [DefaultValue(0)] int? commentId)
代码运行良好。这是我做错了什么,还是反射对于 Int32 和 Int64 类型过于严格的问题?我能做些什么来解决它?投长如弦?