为什么 ASP.NET MVC 2 呈现此代码?
我在类中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为当您提交表单时,除非选中该复选框,否则不会在回发中将其提交到服务器。它有助于区分错误值和缺失值。他们只是在解决网络表单工作方式的变幻莫测之一。
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.