gpt4 book ai didi

c# - 为什么我的复选框没有将它们的值传递给 ASP.NET Core 中的 Controller ?

转载 作者:行者123 更新时间:2023-12-03 21:18:49 25 4
gpt4 key购买 nike

我觉得这可能很容易解决,但我似乎无法绕过它。我有一个 ASP.NET Core Web 应用程序,我正在使用 ajax 表单将数据提交给我的 Controller 进行处理。我的问题是我的复选框总是作为“假”传入,即使它们可能被选中。

我搜索了一些答案,但我尝试过的一切都没有奏效。诸如使用 checked 之类的事情属性,确保名称正确。

任何人都可以阐明为什么在将表单提交给 Controller 时会忽略这些值以及如何修复它?

表格

<form asp-action="CreateCustomView" asp-controller="Data"
data-ajax="true"
data-ajax-method="POST">
<div class="row">
<div class="col">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="ColName" name="ColName" checked>
<label class="custom-control-label" for="ColName">Name</label>
</div>
</div>

<button type="reset">Reset</button>
<button type="submit">Save changes</button>
</form>

型号
namespace MyProject.Data
{
public class GridView : BaseEntity
{
public string Name { get; set; }
public bool ColName { get; set; }
}
}

数据 Controller
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MyProject.Data;
using Microsoft.AspNetCore.Mvc;

namespace MyProject.UI.Controllers
{
public class DataController : Controller
{
public IActionResult Index()
{
return View();
}
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult CreateCustomView(GridView data)
{
//This method is incomplete, there is a break at the ActionResult to see what values are passed into `data`. In production, the values would be handled and the changes would be saved.
return View();
}
}
}

我在方法上有一个断点 CreateCustomView查看传递了哪些值,无论我检查了哪些复选框,它们总是作为 false 传递.

任何人都可以帮助解决这个相当奇怪的问题吗?

更新

根据@Reyan-Chougle 提供的答案,如果您使用的是 CORE,则需要提供如下输入:
<input asp-for="@Model.ColType" type="checkbox" />

呈现页面时,控件会自动获得一个隐藏字段。以下是上述控件的 HTML 呈现的内容:
<input type="checkbox" class="custom-control-input" id="ColType" value="true" data-val="true" data-val-required="The ColType field is required." name="ColType">
<input type="hidden" value="false" id="ColType" name="ColType">

如您所见,它创建了一个值为 false 的隐藏复选框。这意味着,作为 bool 类型,它在提交时始终具有 true 或 false 值。

最佳答案

当您使用 ASP.NET Core 时,建议使用 标签助手 :

<div class="form-group">
<label asp-for="@Model.ColName"></label>
<input asp-for="@Model.ColName" type="checkbox" />
</div>

关于c# - 为什么我的复选框没有将它们的值传递给 ASP.NET Core 中的 Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57079165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com