对json数组进行排序和filter过滤
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>对json数组进行排序和filter过滤</title>
</head>
<body>
<script>
var data = [
{recordId: 10, recordNo: "PPCZ_", userId: 1, recordType: 9, recordCode: "", recordInMoney: 1111},
{recordId: 5, recordNo: "PPCZ_20170105170203", userId: 1, recordType: 9,recordInMoney: 11},
{recordId: 2, recordNo: "PPCZ_20170105170201", userId: 1, recordType: 9,recordInMoney:500}
]
/*
* @description 根据某个字段实现对json数组的排序
* @param array 要排序的json数组对象
* @param field 排序字段(此参数必须为字符串)
* @param reverse 是否倒序(默认为false)
* @return array 返回排序后的json数组
*/
function jsonSort(array, field, reverse) {
//数组长度小于2 或 没有指定排序字段 或 不是json格式数据
if(array.length < 2 || !field || typeof array[0] !== "object") return array;
//数字类型排序
if(typeof array[0][field] === "number") {
array.sort(function(x, y) { return x[field] - y[field]});
}
//字符串类型排序
if(typeof array[0][field] === "string") {
array.sort(function(x, y) { return x[field].localeCompare(y[field])});
}
//倒序
if(reverse) {
array.reverse();
}
return array;
}
//使用方法
console.log(jsonSort(data,'recordId'));
//filter方法
function gtFilter(value) {
return value.recordId > 5
}
console.log(data.filter(gtFilter))
</script>
</body>
</html>
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
7 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)