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