为什么 ASP.NET MVC 2 呈现此代码?

发布于 2024-08-28 04:57:05 字数 345 浏览 6 评论 0原文

我在类中有一个 bool 属性。并使用 <%= Html.EditorForModel() %> 生成此代码:

<div class="editor-field">
  <input class="check-box" id="Ativo" name="Ativo" type="checkbox" value="true">
  <input name="Ativo" type="hidden" value="false">
</div>

我的问题是:为什么它要创建一个隐藏的输入?

I have an bool property in a class. And using <%= Html.EditorForModel() %> its generating this code:

<div class="editor-field">
  <input class="check-box" id="Ativo" name="Ativo" type="checkbox" value="true">
  <input name="Ativo" type="hidden" value="false">
</div>

My question is: why it's creating an input hidden ?

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

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

发布评论

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

评论(1

流年里的时光 2024-09-04 04:57:05

这是因为当您提交表单时,除非选中该复选框,否则不会在回发中将其提交到服务器。它有助于区分错误值和缺失值。他们只是在解决网络表单工作方式的变幻莫测之一。

It's because when you submit a form, unless the checkbox is checked, it will not be submitted to the server in the postback. it helps distinguish between a false value and a missing value. They are just working around one of the vagaries of the way forms work on the web.

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