使用dxTreeList在页面加载时显示所选节点

时间:2018-04-14 11:30:01

标签: javascript json knockout.js devextreme treelistview

我正在使用devextreme dxTreeList和knockout js

here is my exmple in codepen 我的问题是: 如何将Web服务中的json数据分配给selectedRowKeys 我的数据就像

 $.getJSON('../DataAPI/api/Data/GetData', function (data) {
            self.GetData(JSON.parse(data));})

,数据就像这样

GetData (["2,8,25"])

我希望数据像这样

GetData ([2,8,25])

1 个答案:

答案 0 :(得分:0)

var stringArray = data[0].split(",");
stringArray.forEach(function(string){
    selectedRowKeys.push(parseInt(string));
});
self.GetData(selectedRowKeys);