- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 SO 上阅读了很多答案,但是它不适合我。
我有模型:
class SomeOrder
{
public string TypeDrink {get; set;}
}
Controller :
public ViewResult Edit(int id)
{
SomeOrder se = newSomeOrder{ TypeDrink=3 };
return View(se);
}
并查看:
@Html.EditorForModel @Html.RadioButtonFor(m=>m.TypeDrink, "1") Tea
@Html.RadioButtonFor(m=>m.TypeDrink, "2") Coffee
@Html.RadioButtonFor(m=>m.TypeDrink, "3") Juice
如何在 [HTTPPOST] 方法中读取单选按钮的选定值?在我的 HTTPPOST 方法中,存储的是预选值,而不是用户选择的值:
[HTTPPOST]
public ViewResult Edit(SomeOrder se)
{
string chosenValue=se.TypeDrink;// always the old selected value
}
最佳答案
您的 View 在单选按钮之前包含 @Html.EditorForModel()
。 EditorForModel()
将为模型中的每个属性生成表单控件,因此它将为属性 TypeDrink
生成一个控件。根据应用于您的属性的属性以及您可能拥有的任何 EditorTemplates
,它可能会在隐藏的输入中生成。
因为您的表单首先回发 EditorForModel
生成的输入的名称/对值,输入的值将绑定(bind)到您的模型,单选按钮的值将被忽略通过 DefaultModelBinder
。
从您的 View 中删除 EditorForModel
,模型将根据单选按钮的值进行绑定(bind)。
关于c# - 如何在 HTTPPOST 中读取 HTML.RadioButtonFor 的选定值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32176945/
我在我的 web 项目中使用 RadioButtonFor,但如果用户选择单选按钮的文本,我想使用标签来选择项目,但生成的 html 给了我由于 Radiobuton,多个相同的 #id,我想更改它以
我的 View 模型中有这个属性: public bool IsObligatory { get; set; } 它应该由用户在 post 方法中填写。问题是我检查了第二个单选按钮的默认值。如何删除它
我正在生成单选按钮列表,然后尝试在加载时选择一个选项,如下所示。 View 中的 Foreach 循环 @foreach (var myListItem in Model.MyList) {
不确定标题是否有意义,但是当我们选择是/否单选按钮时,我有下面的代码来隐藏/显示一些字段 @if (Model != null) { using (Html.BeginForm("NextB
我有一个 PDF 类 public class UIClonePDFDetail { public int CatalogueID { get; set; }
我正在尝试将使用 for 循环和 Razor 语法创建的单选按钮组合在一起。这是代码: @for (var i = 0; i it.Sessions[i].Id)
我在使用模型中的 HtmlHelper、RadioButtonFor 和枚举时遇到问题。我有一个强类型 View ,我希望复选框能够切换我的枚举属性。 Enum.cs public enum Valu
在 ASP.NET MVC4 的 Razor View 中,如何确保没有一个单选按钮默认为未选中? MVC 似乎为我检查了一个,即使我没有声明在以下代码中检查一个。 @Html.RadioButton
这是我的静态类: using System; using System.Collections.Generic; using System.Linq; using System.Web.Mvc; us
我在 View 中使用 foreach 循环来显示一些单选按钮行.. sample radiobutton Integrity @Html.RadioButton
我使用 @Html.RadioButtonFor 扩展方法有一个奇怪的行为。我正在使用 foreach 循环创建 RadioButton 和 By 三元运算符的列表。我试图将尊重条件的人设置为检查,但
我的 mvc 网页中有 2 个单选按钮。 // some html codes m.Agents, "A", new { Checked = "checked" })%> //ra
我是 MVC 的新手。目前我有一个强类型 View ,我使用两个 Html.RadioButtonFor 作为标签,代码类似于: @Html.RadioButtonFor(model
到目前为止,我正在尝试用 Razor 语法制作一个单选按钮列表 @foreach (var p in Model) { @Html.RadioButton("name", "
我在 View 中嵌套了 foreach 循环,但单选按钮有问题。 @foreach (var header in Model.surveyHeaders) { @header.Name fo
我有三个单选按钮,我的字段值类型是整数,例如 Maintenance 为 3,1 人活跃,2 人不活跃。 @Html.RadioButtonFor(model => model.StatusId, "
我有一个表格: @using (Html.BeginForm("Buy", "Keys", FormMethod.Post)) { 1. @Html.DropDownLi
我有这样定义的单选按钮 @foreach (var actionType in partActionTypes) { @Html.RadioButtonFor(x =>
根据我的研究,在 MVC 中编写复选框的正确方法如下。 @Html.CheckBoxFor(m => m.RememberMe) @Html.LabelFor(m => m.RememberMe) 这
我在 MVC razor 中编写了一个单选按钮。下面是它的代码。 @{ var LinkRadioName = "_Link"; var Content
我是一名优秀的程序员,十分优秀!