通过AJAX发送对象数组
所以得到我需要在JS中的对象,我做到了:
$('.combine-payment-input').each(function (index, value) {
if (parseFloat(value.value) > 0) {
if (methodOfPayment == -1) {
methodOfPayment = value.dataset.method;
}
else {
methodOfPayment = 0;
}
vmopl.push({
id: value.dataset.method,
name: $('label[for="' + value.id + '"]').html(),
inUse: 'True',
ammount: value.value
});
}
});
如果我最后console.log
vmopl
,我会得到类似的东西
[Object { id="2", name="Card", inUse="True", ammount="500"},
Object { id="1", name="Cash", inUse="True", ammount="250"}]
现在,如果我尝试将此发送给AJAX使用
$.get('/reports/savebill/' + methodOfPayment + '?vmop=' + JSON.stringify(vmopl), function (data) {
if (data == 'True') {
location.href = '/order/neworder/';
} else {
alert("Unsuccessful!");
}
});
控制器操作应该选择vmop
,控制器看起来像这样:
public bool SaveBill(int id, ViewMethodOfPayment[] vmop) {
//lots of code...
}
但是当我放置一个断点时,即使当我将它传递给另一个对象( var temp = vmop;
)时,我总能看到vmop
为空。
ViewMethodOfPayment
是一个简单的模型类:
public class ViewMethodOfPayment
{
public long Id { get; set; }
public string Name { get; set; }
public bool InUse { get; set; }
public double Ammount { get; set; }
}
如果我错过了任何信息,或者如果不清楚我想要做什么/期望什么,请留下评论,我会尽快回复!
谢谢阅读!
编辑:更改了第一个代码块(第9行,因为我包含了会带来JavaScript错误的代码)
我目前使用的是:
Javascript通过JSON.stringify发送数据,就像你一样。
C#:
public ActionResult AjaxDoSomething(string vmop)
{
var jss = new JavaScriptSerializer();
try
{
var parameter = jss.Deserialize<ViewMethodOfPayment []>(vmop);
//Do something with this data and return the desired result
return Json(result, JsonRequestBehavior.AllowGet);
}
catch
{
return null;
}
}
请尝试在ViewMethodOfPayment [] vmop之前放置[FromUri],如下所示
public bool SaveBill(int id,[FromUri] ViewMethodOfPayment[] vmop) {
//lots of code...
}
链接地址: http://www.djcxy.com/p/28591.html
上一篇: Sending an array of objects via AJAX
下一篇: disable capturing context in all library code, ConfigureAwait(false)