ブログ投稿の動的リストを作成しようとしています。リストをアルファベット順に表示する必要があります。現在のコードは問題なく動作していますが、時系列のリストが表示されました。リストをアルファベット順に並べ替えるにはどうすればよいですか。現在のコードを以下に示します。これはブロガーのブログ用で、このコードで使用する API を作成するために kimonolabs を使用しました。フィードは jason です。(ブログページ領域で、最初に空白の html リストを作成し、以下のコードを使用してデータを挿入しました。html も指定されています。) 結果をアルファベット順にするにはどうすればよいですか。
jQuery.ajax({
"url":"https://www.kimonolabs.com/api/djwmp1p8?apikey=P1DP0fILX0ou5GnXR6DRbbRmkFuQNC0G",
"crossDomain":true,
"dataType":"jsonp",
//Make a call to the Kimono API following the "url"
'success': function(response){
// If the call request was successful and the data was retrieved, this function will create a list displaying the data
jQuery(".panel-heading").html(response.name);
//Puts the API name into the panel heading
var collection = response.results.collection1;
for (var i = 0; i < collection.length; i++){
// Traverses through every element in the entire collection
jQuery(".list-group").append('<li class="list-group-item">' +'<a href='+collection[i].property1.href +'>'+ collection[i].property1.text + '</a>' +'</li>');
// adds the text and the links from the first property into the list
}
}
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<div class="container padding">
<div class="panel panel-info">
<div class="panel-heading"></div>
<ol class="list-group">
</ol>
</div>
</div>