1

只想知道为什么javascript的push方法会插入“index”

   var agendaBatch=[];

    for(var i=0; i<agendas.length; i++) {

        var agenda = {
            MeetingId: meetingId,
            Title: agendas[i].title,
            Description: agendas[i].description,
            Remarks: "",
        };

        agendaBatch.push(agenda);   
    }

    console.log(kendo.stringify(agendaBatch));
    dataSourceAgenda.add(agendaBatch);

    dataSourceAgenda.sync();

输出:

{"0":{"Title":"Agenda title","Description":"Agenda details","Remarks":""},
 "1":{"Title":"Agenda title","Description":"Agenda details","Remarks":""}}

我期望这个输出符合我的 Web API 参数要求

[{"Title":"Agenda title","Description":"Agenda details","Remarks":""},
 {"Title":"Agenda title","Description":"Agenda details","Remarks":""}]

有什么建议我该怎么做?......

更新:刚刚发现,我正在使用 kendo ui 数据源,我在删除架构上的 Id 时解决了问题

var dataSourceAgenda = new kendo.data.DataSource({
            transport: {
                type: "odata",
                create: {
                    type: "POST",
                    url: API_URL + "/agendas",
                    contentType: "application/json; charset=utf-8",
                    dataType: 'json'
                },
                parameterMap: function (options, operation) {
                    if (operation !== "read" && options) {
                        return kendo.stringify(options);
                    } 
                }
            },
            schema: {
                model: {
                    id: "Id", //I get my desired output if this is removed
                    fields: {
                        MeetingId: { type: "number" },
                        Title: { type: "string" },
                        Description: { type: "string" },
                        Remarks: { type: "string" },
                    }
                },
            }        
        });  

但是我需要其他函数中的 Id 参数,无论如何我可以在不删除 kendo 数据源中的 Id 的情况下执行此操作。

更改了问题标题!

4

2 回答 2

3

根据 Kendo UI DataSource 的文档(此处),add方法接受一个Objectnot an arrayof Object

此外,您使用id的字段Id不属于您的model.

尝试执行以下操作:

var dataSourceAgenda = new kendo.data.DataSource({
    transport: {
        create      : function (op) {
            ...
        },
        parameterMap: function (options, operation) {
            if (operation !== "read" && options) {
                return kendo.stringify(options.models);
            }
        }
    },
    batch    : true,
    schema   : {
        model: {
            id    : "Id", //I get my desired output if this is removed
            fields: {
                Id         : { type: "number" },
                MeetingId  : { type: "number" },
                Title      : { type: "string" },
                Description: { type: "string" },
                Remarks    : { type: "string" }
            }
        }
    }
});

IE:

  1. 设置batchtrue能够在您调用时一次发送多个请求sync
  2. 在定义Idschema.model.fields定义。
  3. stringifyoptions.models
于 2013-08-21T10:28:13.680 回答
0

显然是一个数组,我agendaBatch认为它kendo.stringify没有正确序列化它。你可以和JSON.stringify.

请注意,旧版浏览器并未实现此功能。如果你需要支持他们,你可以包含 Douglas Crockford 的脚本:

https://github.com/douglascrockford/JSON-js/blob/master/json2.js


编辑

现在你改变了你的问题 - 我对剑道 ui 不是很熟悉,所以这真的只是一个疯狂的猜测,试图帮助你解决更新的问题。

看起来您可以访问databeforeSend函数。您可以尝试根据需要对其进行操作,例如:

beforeSend: function (xhr, s) {
    var arrayData = [];

    for (var id in s.data) {
        arrayData.push(s.data[id]);
    }

    s.data = arrayData;
}
于 2013-08-21T08:24:57.417 回答