var demo=[{"_source":{"weight":100}},{"_source":{"weight":20}}]
```javascript
function compare(property1, property2) {
return function (a, b) {
let value1 = a[property1][property2];
let value2 = b[property1][property2];
return value2 - value1;
}
} //sort排序降序
function compare(property1, property2) {
return function (a, b) {
let value1 = a[property1][property2];
let value2 = b[property1][property2];
return value1 - value2;
}
} //sort排序升序
demo.sort(compare("_source","weight"))