从视图中的表单传递值时在控制器中接收参数 null

发布于 2025-01-18 09:59:15 字数 1100 浏览 0 评论 0原文

我在主页索引页中有一个表单,询问用户想要查看哪个患者,并询问 SSN(社会安全号码)号码,该号码是表 DIAGNOSIS 中的外键。当用户输入 SSN(社会安全号码)并将数据传递给控制器​​时,应用程序会停止并提示参数不能为空。

<form asp-controller="Diagnosis" asp-action="Index"  method="post">
        Social Security Number: 
    <input asp-for="Patient.Email" type="email" style="width:50%;" placeholder="Social Security" >
    <button type="submit" class="button" style="padding:10px;">
        <i class="bi bi-search"></i>Search
    </button>

    Name: 
    <input asp-for="Patient.Name" type="text" style="width:40%;" placeholder="Patient Name">
    <button type="submit" class="button" style="padding:10px;">
        <i class="bi bi-search"></i>Search
    </button>
</form>

控制器

public IActionResult Index(string id)
{
    int _id = int.Parse(id);

    List<Diagnosis> diagQuery = context.Diagnosis
                                       .Where(d => d.SocialSecurityPatId == _id)
                                       .ToList();

    return View(diagQuery);
}

I have a form in the Home index page that ask the user which patient wants to see, and ask for the SSN (Social Security Number) number that is a foreign key in the table DIAGNOSIS. When the user enter the SSN (Social Security Number) and pass the data to the controller the app stops and says parameter cannot be null.

<form asp-controller="Diagnosis" asp-action="Index"  method="post">
        Social Security Number: 
    <input asp-for="Patient.Email" type="email" style="width:50%;" placeholder="Social Security" >
    <button type="submit" class="button" style="padding:10px;">
        <i class="bi bi-search"></i>Search
    </button>

    Name: 
    <input asp-for="Patient.Name" type="text" style="width:40%;" placeholder="Patient Name">
    <button type="submit" class="button" style="padding:10px;">
        <i class="bi bi-search"></i>Search
    </button>
</form>

The controller

public IActionResult Index(string id)
{
    int _id = int.Parse(id);

    List<Diagnosis> diagQuery = context.Diagnosis
                                       .Where(d => d.SocialSecurityPatId == _id)
                                       .ToList();

    return View(diagQuery);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文