如何验证从 ASP.NET MVC3 中的数据库填充的下拉列表?

发布于 2024-10-11 09:57:34 字数 252 浏览 6 评论 0原文

我有 2 个表,“人员”和“国籍”。人员通过 NationalityID 拥有国籍表的 FK。在我的“创建人员”表单中,我有一个填充了 NationalityID 和 NationalityDescription 的下拉列表。验证此下拉列表以处理使用开发人员工具栏等将发布的值更改为无效 NationalityID 的人的最佳方法是什么? 我一直在考虑在视图模型中使用 System.DataAnnotations.AssociationAttribute 但我不确定这是否正是我所需要的。

I have 2 tables, Person and Nationality. Person has an FK to the Nationality table via NationalityID. In my Create Person form, I've got a dropdown that's populated with NationalityID and NationalityDescription. What's the best way to validate this dropdown to deal with people using developer toolbars etc to change the posted value to an invalid NationalityID?
I've been looking at using System.DataAnnotations.AssociationAttribute in a viewmodel but I'm not sure if this is quite what I need.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浊酒尽余欢 2024-10-18 09:57:34

这种验证应该由业务层执行。例如:

[HttpPost]
public ActionResult Update(int nationalityId, int personId)
{
    string error;
    if (!Repository.TryUpdatePersonNationality(personId, nationalityId, out error))
    {
        // The business layer failed to perform the update 
        // due to FK constraint violation => add the error to model state
        ModelState.AddModelError(nationalityId, error);
        // redisplay the form so that the user can fix the error
        return View();
    }
    return RedirectToction("Success");
}

This kind of validation should be performed by the business layer. For example:

[HttpPost]
public ActionResult Update(int nationalityId, int personId)
{
    string error;
    if (!Repository.TryUpdatePersonNationality(personId, nationalityId, out error))
    {
        // The business layer failed to perform the update 
        // due to FK constraint violation => add the error to model state
        ModelState.AddModelError(nationalityId, error);
        // redisplay the form so that the user can fix the error
        return View();
    }
    return RedirectToction("Success");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文