如何在 ASP.NET MVC 中处理 null

发布于 2024-10-08 15:08:33 字数 247 浏览 2 评论 0原文

我有用户注册表。它有出生日期字段。它在数据库中不是强制性的,在 UI 上也不是强制性的。但是,当我打算将其分配给对象属性时创建时,我必须将其转换为日期格式。但如果我没有选择它,它将在 FormCollection 对象中变为 null。像

User.DOB=Convert.ToDateTime(collection["DOB"]);

现在的问题是,如果集合[“DOB”]为空,那么它会抛出异常。我无法在这里指定默认值。那么我该如何处理这种情况呢?

I have user registration form. It has field Date of birth. It is not compulsory in database also not on UI. But while create when i am goiing to assign it to objects property, i have to convert it in to date format. But if i have not selected it, it will become null in the FormCollection object. like

User.DOB=Convert.ToDateTime(collection["DOB"]);

Now issue is if it collection["DOB"]is null then it throws exception. I can not assign default value here. So how can i handle this situation?

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

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

发布评论

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

评论(1

猫瑾少女 2024-10-15 15:08:33

为此,您可能最好使用 DateTime.TryParse

这样您就可以检查您是否使用有效的日期。

DateTime dateOfBirth;

bool isValidDateOfBirth = DateTime.TryParse(collection["DOB"], out dateOfBirth);

if(isValidDateOfBirth)
{
 // do stuff
}
else
{
 // do some other stuff
}

You'll probably be better off using DateTime.TryParse for this.

This way you can check whether you're working with a valid date or not.

DateTime dateOfBirth;

bool isValidDateOfBirth = DateTime.TryParse(collection["DOB"], out dateOfBirth);

if(isValidDateOfBirth)
{
 // do stuff
}
else
{
 // do some other stuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文