考虑我的代码:
var sortable_list = $('#sortable1');
sortable_list.sortable({
...
update: function(event, ui){
var order = sortable_list.sortable('serialize');
console.log(order);
}
});
现在我得到了这个输出
driver.executeScript(function rf(a){return a;}, msg).then(function(s) {
console.log(s);
});
答案 0 :(得分:0)
Dictionary是一种无序的数据结构,这就是你得到那个输出的原因。
我建议你使用一个对象数组
{key, array[]}