基本上我是Winforms的人。学习ASP.Net和MVC并遇到问题。
我的网页名称为Calculation
。内容如下
<asp:Content ID="aboutContent" ContentPlaceHolderID="MainContent" runat="server">
<h2>About</h2>
<p>
<%: ViewData["Message"] %>
</p>
</asp:Content>
HomeController.cs
public ActionResult Calculation(int value)
{
ViewData["Message"] = String.Format("{0} when squared produces {1}", value, Models.Mathematics.Square(value));
return View();
}
我按了ctrl+5
并到达了我的主页。单击计算页面并收到错误
The parameters dictionary contains a null entry for parameter 'value' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Calculation(Int32)' in 'MathSolution.Controllers.HomeController'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter.
Parameter name: parameters
我试过了
http://localhost:3670/Home/Calculation/5
也是
http://localhost:3670/Home/Calculation?value=5
。我仍然收到错误。我还尝试将HttpPost
放在HomeController.cs中的Calculation
方法上。
但是,如果在HomeContoller.cs文件中计算方法我为参数设置了一个默认值,那么错误就会消失,我总是得到默认值。
说实话,我的教程能够使它工作,但我不确定我的解决方案有什么问题。如果您需要更多信息,请与我们联系。
答案 0 :(得分:3)
最简单的解决方案,并不一定是最好的:尝试将参数名称更改为“id”
public ActionResult Calculation(int id)
{
ViewData["Message"] = String.Format("{0} when squared produces {1}", id, Models.Mathematics.Square(id));
return View();
}
检查this以获得更准确的解释
答案 1 :(得分:0)
您需要为参数指定一个默认值:
public ActionResult Calculation(int value = 0)
或者让它成为可以为空的类型:
public ActionResult Calculation(int? value)
因为它是一个整数,所以它不能为null,这是在路由中没有指定值的情况。