gpt4 book ai didi

c# - 选择 HTML.RadioButtonFor 后如何为模型属性赋值

转载 作者:行者123 更新时间:2023-11-30 17:53:35 26 4
gpt4 key购买 nike

我是 MVC 的新手。目前我有一个强类型 View ,我使用两个 Html.RadioButtonFor 作为标签,代码类似于:

<label class="radio">
@Html.RadioButtonFor(model => model.Incoming, true)IncomingItems</label>
<label class="radio">
@Html.RadioButtonFor(model => model.Incoming, false)OutgoingItems</label>
<input type="hidden" id="isIncomingItem" value = "@Model.Incoming" />

我想要的是在选中第一个单选按钮时将 model.Incoming 设置为 true 或将其设置为 false,然后我想立即在 View 中使用此模型属性(将此值分配给 "isIncomingItem") 在整个表单被提交到服务器之前。

你们知道我如何实现它吗?非常感谢!

最佳答案

您的 Incoming 属性已经填充了选定的值,它将可用于操作方法。如果你想在隐藏字段中设置相同的值,请尝试如下

@Html.HiddenFor(m => m.Incoming,new { id = "isIncomingItem"})

关于c# - 选择 HTML.RadioButtonFor 后如何为模型属性赋值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17217415/

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