我不知道这是一个真正的问题,还是我对如何做事的想法错了,但你如何将一个json对象(从淘汰赛)和表单提交一起发布到MVC控制器?
首先,这是我的控制器:
[HttpPost]
public ActionResult CreateLoanApp(PeopleViewModel MyViewModel)
{
//Do something on MyViewModel;
return RedirectToAction("Index");
}
[HttpPost]
public JsonResult CreateLoanApp(string deductions)
{
//Do something on string deductions;
}
这是我的观点:
<h2>My Form </h2>
@using (Html.BeginForm(new { @class = "submitForm" }))
{
<label>Loan Amount</label>
@Html.DropDownListFor(model => model.Loan.LoanAmount, Model.DropDownOfLoanAmount, new { @class = "LoanAmount", @data_bind = "value: selectedLoanAmount" })
@Html.ValidationMessageFor(model => model.Loan.LoanAmount)
<label>Loan Receivable</label>
@Html.TextBoxFor(model => model.Loan.LoanReceivable, "{0:0,0.00}", new { @class = "LoanReceivable", @readonly = true, dir = "rtl", @data_bind = "value: loanReceivable" })
@Html.ValidationMessageFor(model => model.Loan.LoanReceivable)
<label>Interest</label>
@Html.TextBoxFor(model => model.Loan.Interest, "{0:0,0.00}", new { @readonly = true, @class = "Interest", dir = "rtl", @data_bind = "value: interest" })
<table class="input-group">
<tbody data-bind="foreach: loanDeductions">
<tr>
<td><strong data-bind='text: deductionName'></strong></td>
<td>
<input class="deductionCode form-control" data-bind='value: amount, valueUpdate: "afterkeydown"' /></td>
<td><a href='#' data-bind='click: $parent.removeLine'>Delete</a></td>
</tr>
</tbody>
</table>
<button type="button" class="btn btn-danger" data-bind="click: save">Save Deduction</button>
<button type="submit" class="btn btn-primary">Save changes</button>
}
如您所见,我有2个不同的保存按钮:
1.“Save Deduction”按钮调用ajax函数,该函数将名为“deductions”的json字符串发布到控制器中的动作。
2.另一方面,“保存更改”按钮是一个提交按钮,将表单提交给我的控制器并传递“MyViewModel”。
现在我要做的是将2个按钮组合成一个,并将2个对象组合在一个控制器中。
我的意思是我想创建一个接受2个参数的动作:
[HttpPost]
public ActionResult CreateLoanApp(PeopleViewModel MyViewModel, string deductions)
{
// Do something on MyViewModel
//Do something on string deductions;
}
这是否可能,如果可以,你可以告诉我它是如何完成的。
任何帮助将不胜感激。如果您需要更多细节,请发表评论。谢谢!
答案 0 :(得分:2)
幸运的是,我一直处于同样的情况。它的处理方式是更新beforeSend对象中的data属性。
这是控制器动作(mainView也是表单绑定的,是你的页面视图模型,tabView参数将是淘汰模型中的那个):
[HttpPost]
public ActionResult Save(MainViewModel mainView, TabViewModel tabView)
{
//do some work here
}
视图的Html,表示发送前setter(MainScript是用于管理此页面的客户端工作的javascript对象的名称):
@using(Ajax.BeginForm("Save",new AjaxOptions {HttpMethod="POST", OnBegin = "MainScript.beforeSend", OnSuccess="MainScript.onSuccess(data)"}})
{
//some html form elements
<input type="submit" value="Send" id="btnSave" />
}
@section Scripts{
//a bunch of scripts are loaded here
<script type="text/javascript">
$(document).ready(function(){
MainScript.initialize(@Html.Raw(Json.Encode(Model)));
});
</script>
}
初始化接收ViewModel,以便我们可以将它存储在客户端并设置敲除绑定,这里不重要,但是如果你还没有学会如何做到这一点,这是一件好事。
最后,当用户点击提交时,将调用MainScript.beforeSend()函数:
beforeSend: function() {
var tabViewModel = tabKnockoutVM.GetModel();
this.data = this.data + "&" + convertToFormData(tabViewModel);
}
这里有两点需要注意:
首先,您需要在淘汰模型中创建或获取与参数中的.Net对象匹配的模型。如果您的Knockout模型相同,则可以使用Knockout Mapping库。如果没有,我建议在你的Knockout模型上放一个为你构建对象的函数。
其次,需要有一个函数将对象转换为可以由.Net解析的格式。这就是'convertToFormData'函数调用发挥作用的地方,这是(请注意,此代码在别处找到):
function convertToFormData(obj,prefix) {
var dataArray=[];
for (var op in obj) {
if(op in obj) {
var k = prefix ?
(isNaN(op ) ?
prefix + "." + op :
prefix + "[" + op + "]") :
op;
var v = obj[op];
dataArray.push(typeof(v==="object"?
convertToFormData(v,k) :
encodeURIComponent(k)+"=" + encodeURIComponent(v));
}
}
return dataArray.join("&");
}