I found out how to sort a JSON array at http://www.devcurry.com/2010/05/sorting-json-array.html
Now I want to sort it in a generic way; so that my sorting function knows which attribute to sort by.
For example if my array is
[
{
"name": "John",
"age": "16"
},
{
"name": "Charles",
"age": "26"
}
]
I want to avoid writing different if cases to know if I should sort by name or age. I just want to pass a parameter 'name' or 'age' and my sorting function should know what to do.
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…