Questions tagged «hidden-field»




13
@ Html.HiddenFor在ASP.NET MVC中的列表上不起作用
我正在使用包含列表作为属性的模型。我用我从SQL Server抓取的项目填充此列表。我希望列表隐藏在视图中并传递给POST操作。稍后我可能想使用jQuery向此列表添加更多项,这使得数组不适合稍后扩展。通常你会用 @Html.HiddenFor(model => model.MyList) 以完成此功能,但由于某种原因,POST中的List始终为空。 很简单的问题,有人知道MVC为何会这样吗?

2
如何在Ruby on Rails的form_for中使用hidden_​​field?
我读过这篇文章,但是我对RoR还是陌生的,因此在理解它时遇到了一些麻烦。我正在使用表单创建新的请求记录,并且我需要发送的所有变量已经存在。这是我需要发送的数据(在do循环中): :user_id => w[:requesteeID] :requesteeName => current_user.name :requesteeEmail => current_user.email :info => e 这是我的表格,目前可以使用,但只发送所有内容的NULL值: <% form_for(:request, :url => requests_path) do |f| %> <div class="actions"> <%= f.submit e %> </div> <% end %> 如何使用hidden_​​fields发送已经拥有的数据?谢谢阅读。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.