//数组按键排序
function jsonSort(jsonData)
{
try {
let tempJsonObj = {};
let sdic = Object.keys(jsonData).sort();
sdic.map((item, index)=>{
tempJsonObj[item] = jsonData[sdic[index]]
})
return tempJsonObj;
} catch(e) {
return jsonData;
}
}