1

我正在尝试使用以下内容发布 JavaScript 数据对象:

$.post(frm.attr("action"), data, function(res)
{
    // do some stuff
}, "json");

其中“数据”采用以下结构

data
 - panelId
 - siteId
 - ConfiguredFactsheetId // this is an array of CheckBox ids that correspond to ConfiguredFactsheets
   - 123
   - 234
   - 345

这样,站点和面板都正确实例化并与其数据绑定,但 List 对象为空。

public JsonResult Edit(Site site, Panel panel, List<ConfiguredFactsheet> configuredFactsheets)
{
    // do stuff
    return Json(success);
}

现在,我意识到我的“数据”对象的 ConfiguredFactsheetId 属性只是一个 id 值数组。我是否需要指定每个值对应于我的 ConfiguredFactsheet 对象的一个​​ configuredFactsheetId 属性?如果是这样,我的数据对象将采用类似于

data
 - panelId
 - siteId
 - ConfiguredFactsheet // this is an array of CheckBox ids that correspond to ConfiguredFactsheets
   - ConfiguredFactsheetId:123
   - ConfiguredFactsheetId:234
   - ConfiguredFactsheetId:345

但这显然行不通,因为每次我向对象添加一个新的 ConfiguredFactsheetId 时,它都会覆盖前一个。

我知道如果我建立一个表单的查询字符串我可以做到这一点

"&ConfiguredFactsheet[i].configuredFactsheetId = " + configuredFactsheetId;

但我想将所有内容都包含在一个数据对象中

有什么建议么?我需要更清楚地解释任何事情(可能是所有事情!)吗?

谢谢

戴夫

4

2 回答 2

1

最后,这奏效了:

var valuesArray = objCheckBoxes.map(function()
{
    return $.getAttributes($(this));
});

var obj = new Array();
$.each(valuesArray, function(item) { obj.push($(this)[0]); });

$.each(obj, function(i)
{
    // basically I take the rule where you need to append
    // the index to the type, and I apply it here.
    data["configuredFactsheets[" + i + "].configuredFactsheetId"] = $(this).attr("configuredFactsheetId");
});

注意:阅读$.getAttributes

于 2010-03-08T17:07:53.617 回答
0

另一种方法是发布:

?myValues=1&myValues=2&myValues=3

并接受它作为 IEnumerable

public ActionResult DoSomething(IEnumerable<int> myValues) {
    ...
于 2010-03-08T15:59:38.243 回答