繁体   English   中英

可选参数必须是引用类型、可为空类型或声明为可选参数。 参数名称:参数`

[英]An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter. Parameter name: parameters`

我正在 .net MVC 中创建一个演示应用程序。

下面是来自我的 StudentController 的代码片段。

public ActionResult Edit(int studentId)
{
    var std = studentList.Where(s => s.StudentId == studentId).FirstOrDefault();
    return View(std);
}

[HttpPost]
public ActionResult Edit(Student std)
{
    //write code to update student 

    return RedirectToAction("Index");
}

来自 RouteConfig 的代码片段:

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);

当我点击 url http://localhost:54977/student/Edit/1时,出现以下异常。

The parameters dictionary contains a null entry for parameter 'studentId' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Edit(Int32)' in 'MVC1.Controllers.StudentController'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter. Parameter name: parameters The parameters dictionary contains a null entry for parameter 'studentId' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Edit(Int32)' in 'MVC1.Controllers.StudentController'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter. Parameter name: parameters

但是当我点击 url http://localhost:54976/student/Edit?StudentId=1时它工作正常。

我是 .net MVC 的新手。 任何人都可以请给我建议。

问题是由于您的路由配置。

 routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

http:// localhost:54977 / student / Edit / 1中的第三个参数映射到{id}而不是studentId。

您有两种方法可以解决此问题:

1)更改参数名称

public ActionResult Edit(int id) {
        var std = studentList.Where(s => s.StudentId == id).FirstOrDefault();
        return View(std);
    }

2)为Edit添加新路由:

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
       routes.MapRoute(
            "EditStudent",
            "Edit/{StudentId}",
            new { controller = "Student", action = "Edit" });
        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

尝试在RouteConfig中添加它

routes.MapRoute(
                "Student",                                           // Route name
                "Edit/{StudentId}",                            // URL with parameters
                new { controller = "Student", action = "Edit" }  // Parameter defaults
            );

没有配置路由

  $.ajax({
                type: "POST",
                cache: false,
                url: '/Student/Edit/?StudentId='1,
                dataType: 'json',
                ...
                ...
                ..

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM