私は辞書の配列を持っています、そしてそれはのフォーマットにあります、
resultsArray = {
id = 1;
name = test;
distance = 11.5;
id = 2;
name = test1;
distance = 0.5;
id = 3;
name = test2;
distance = 2.5;
id = 4;
name = test4;
distance = 1.5;
}
距離キーとfloat型の距離を使用して配列を並べ替えたい。では、距離を昇順で使用して配列を並べ替えるにはどうすればよいですか?
だから私はこのような結果を期待しています、
resultsArray = {
id = 2;
name = test1;
distance = 0.5;
id = 4;
name = test4;
distance = 1.5;
id = 3;
name = test2;
distance = 2.5;
id = 1;
name = test;
distance = 11.5;
}
私を助けてください。
ありがとう!