我实现了剑道树列表,但我遇到了一些问题,如下所示:
范围错误: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" },
}
}
}
});
最后,我分析了我的数据,我得到了如下解决方案:
在以下数据中一直存在问题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" }];
父字段值对于剑道中的树列表必须是唯一的。