在剑道树列表中超出了最大调用堆栈大小

时间:2017-07-11 05:55:02

标签: jquery angular kendo-treelist

我实现了剑道树列表,但我遇到了一些问题:

  

RangeError:超出最大调用堆栈大小
  在init._defaultParentId

代码:

var bindingData = [{ "RateTypeID": 1, "c": null, "Type": "abc", "based": "xyz" },
                    { "RateTypeID": 1, "c": 1, "Type": "pqr", "based": "xyz" },
                    { "RateTypeID": 3, "c": 1, "Type": "mno", "based": "xyz" }];
var dataSource = new kendo.data.TreeListDataSource({
                    data: bindingData,
                    schema: {
                        model: {
                            id: "RateTypeID",
                            parentId:"c",
                            fields: {
                                RateTypeID: { field: "RateTypeID", type: "number", editable: false, nullable: false },
                                c: { field: "c", nullable: true },
                                Type: { type: "string" },
                                basedon: { type: "string" },
                            }
                        }
                    }
                });

1 个答案:

答案 0 :(得分:2)

最后我分析了我的数据,我得到了如下解决方案:

以下数据一直存在问题,因为RateTypeID属性用作父级,因此在此字段中找到相同且重复的值会导致错误Maximum call stack size exceeded

var bindingData = [{ "RateTypeID": 1, "childto": null, "UnitType": "abc af f ", "basedon": "xyz" },
                { "RateTypeID": 1, "childto": 1, "UnitType": "pqr adf asd", "basedon": "dsaf" },
                { "RateTypeID": 2, "childto": 1, "UnitType": "mno asfsd  sd ", "basedon": "xyasdfz" }];
  对于剑道中的树列表,

父字段值必须唯一