我刚刚注意到Html.CheckBox(“foo”)生成2个输入而不是一个,有人知道为什么是这样吗?
<input id="foo" name="foo" type="checkbox" value="true" />
<input name="foo" type="hidden" value="false" />
我刚刚注意到Html.CheckBox(“foo”)生成2个输入而不是一个,有人知道为什么是这样吗?
<input id="foo" name="foo" type="checkbox" value="true" />
<input name="foo" type="hidden" value="false" />
当前回答
使用Contains,它将与两个可能的post值一起工作:"false"或"true,false"。
bool isChecked = Request.Form["foo"].Contains("true");
其他回答
你可以写一个helper来防止添加隐藏输入:
using System.Web.Mvc;
using System.Web.Mvc.Html;
public static class HelperUI
{
public static MvcHtmlString CheckBoxSimple(this HtmlHelper htmlHelper, string name, object htmlAttributes)
{
string checkBoxWithHidden = htmlHelper.CheckBox(name, htmlAttributes).ToHtmlString().Trim();
string pureCheckBox = checkBoxWithHidden.Substring(0, checkBoxWithHidden.IndexOf("<input", 1));
return new MvcHtmlString(pureCheckBox);
}
}
使用它:
@Html.CheckBoxSimple("foo", new {value = bar.Id})
在2020/11和。net 5预览版中,有一个拉请求应该使这种行为可控。谢谢大家!
不管怎样,如果有人觉得它有用,.NET Core 3.0的Alexander Trofimov的回答:
public static IHtmlContent CheckBoxSimple(this IHtmlHelper htmlHelper, string name)
{
TextWriter writer = new StringWriter();
IHtmlContent html = htmlHelper.CheckBox(name);
html.WriteTo(writer, HtmlEncoder.Default);
string checkBoxWithHidden = writer.ToString();
string pureCheckBox = checkBoxWithHidden.Substring(0, checkBoxWithHidden.IndexOf("<input", 1));
return new HtmlString(pureCheckBox);
}
在。net core 6中,我遇到了同样的问题,我尝试了@Kolazomai答案,它是有效的。
using Microsoft.AspNetCore.Mvc;
builder.Services.Configure<MvcViewOptions>(
opt=>opt.HtmlHelperOptions.CheckBoxHiddenInputRenderMode = Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode.None
);
从ASP开始。NET (Core) 5,添加到你的启动:
services.Configure<MvcViewOptions>(options =>
{
// Disable hidden checkboxes
options.HtmlHelperOptions.CheckBoxHiddenInputRenderMode = CheckBoxHiddenInputRenderMode.None;
});
以你的观点为例:
<input class="form-check-input" asp-for="@Model.YourBool" />
此属性的附加隐藏字段不再在表单中创建:
<input class="form-check-input" type="checkbox" data-val="true" data-val-required="The YourBool field is required." id="YourBool" name="YourBool" value="true" />
来源:https://github.com/dotnet/aspnetcore/pull/13014 # issuecomment - 674449674
当复选框被选中并提交时,执行此操作
if ($('[name="foo"]:checked').length > 0)
$('[name="foo"]:hidden').val(true);
请参考