注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
// Convert CSV data into array of arrays jQuery.csv()("1,2,3\n4,5,6\n7,8,9\n"); // = [ [1,2,3], [... // Convert CSV data into array of arrays jQuery.csv()("1,2,3\n4,5,6\n7,8,9\n"); // = [ [1,2,3], [4,5,6], [7,8,9] ] // It handles quotes jQuery.csv()('a,"b,c",d'); // = [ ['a', 'b,c', 'd'] ] // You can use any delimiter, e.g. tab jQuery.csv("\t")("a\tb\nc\td\n"); // = [ ['a','b'], ['c','d'] ] // Quick usage with AJAX: jQuery.get(csvfile, function(data) { array = jQuery.csv()(data); }); // Using acr
2010/11/02 リンク