我的 MVC3 vb.net 应用程序有问题。当我尝试发布对控制器所做的更改时,模型不会发送到控制器。
我尝试关注很多帖子,例如this one和this one,但我不确定如何在我的应用程序中实现它们,因为我的模型没有发送 IEnumerable 类型。
最后,我只希望模型为每个批次返回一个值,该值是我将保存到数据库中的值。
当我发布模型并尝试发送到控制器时,页面会通过邮寄方式发送以下内容:
Client=2&Datacenters=20&BatchesForAssignation[0].CenterID=4&BatchesForAssignation[1].CenterID=20&BatchesForAssignation[1].DatacenterID=14...
但我不知道如何将此查询字符串转换为BatchesForAssignation对象,将其分配给模型并发送给控制器。
注意:查询字符串中显示的客户端和数据中心的值未在控制器中使用。我需要BatchesForAssignation[n].CenterID部分。
你能指点我找到解决方案吗?
这是我在 MVC 应用程序中使用的对象(代码压缩):
批:
Public class Batch
public property ID as integer
public property CenterID as integer
public property name as string
end class
中心(此对象仅存储将分配给批处理的所有中心列表。名称只是为了在下拉列表中显示名称):
Public class Center
public property ID as integer
public property name as string
end class
(还有一个 Batchlist 和一个 Centerlist 对象,它们充当从 CollectionBase 继承的集合,存储所有 Batch 和 Center 对象。如果您需要类定义,请告诉我,但非常简单)。
模型如下
Public class ProcessingModel
public property BatchesForAssignation as BatchList
public property Datacenters as CenterList
End class
控制器如下:
<HttpGet()>
<Authorize()> _
Public Function AssignToDataCenters() As ActionResult
Dim model As New ProcessingModel
Dim BatchHandler As New BatchControl
'This line will get the list of batches without datacenter
model.BatchesForAssignation = BatchHandler.GetBatchesAvailable(ConnectionString)
'This method will get the list of Datacenters available
model.Datacenters=BatchHandler.GetDatacenters(ConnectionString)
return View(model)
End Function
HttpPost(这实际上不起作用,因为模型返回一个空模型):
<HttpPost()>
<Authorize()> _
Public Function AssignToDataCenters(ByVal Model as ProcessingModel) As ActionResult
Dim BatchHandler As New BatchControl
Dim SaveResult as Boolean=false
'This line will get the list of batches without datacenter
model.BatchesForAssignation = BatchHandler.GetBatchesAvailable(ConnectionString)
'This method save the information returned by the model
SaveResult=BatchHandler.UpdateBatches(model)
ViewBag("Result")=SaveResult
Return View(model)
End Function
视图如下(是强类型视图):
@ModelType MVCAdmin.ProcessingModel
@Code
ViewData("Title") = "Assign Batches To centers"
End Code
@Using Html.BeginForm()
@<table id="tblAvailableBatches">
<thead>
<tr>
<th>Assign batch to:</th>
<th>Name</th>
</tr>
</thead>
<tbody>
@code
For i As Integer = 0 To Model.BatchesForAssignation.Count - 1
Dim a As Integer = i
@<tr>
<td>@Html.DropDownListFor(Function(m) m.BatchesForAssignation(a).CenterID, New SelectList(Model.Datacenters, "ID", "name", model.BatchesForAssignation(i).CenterID), " ")</td>
<td>@Model.BatchesForAssignation(i).name</td>
</tr>
Next
End Code
</tbody>
</table>
<input type="button" value="Apply changes" id="btnApply" />
End Using
提前致谢
2012 年 6 月 14 日更新:
在进行了一些研究后,我发现我可以使用request.Form
我可以解析视图发送的结果来解析控制器中的查询字符串。但是查询字符串键的格式BatchesForAssignation[0].CenterID
为 , BatchesForAssignation[1].CenterID
,BatchesForAssignation[2].CenterID
依此类推...
是否有更好的方法可以“自动”执行此操作,以便模型解析查询字符串并将解析的对象发送到控制器?
再次...在此先感谢