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

display selected nodes on page load using dxTreeList

我正在使用 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])
var stringArray = data[0].split(",");
stringArray.forEach(function(string){
    selectedRowKeys.push(parseInt(string));
});
self.GetData(selectedRowKeys);