从重复的javascript数组结果集中获取一行

时间:2016-05-13 02:45:30

标签: javascript csv

我有以下文字文件stops.txt

stop_id,stop_code,stop_name,stop_lat,stop_lon,zone_id,stop_url,location_type,parent_station,platform_code,wheelchair_boarding
70011,70011,San Francisco Caltrain,37.77639,-122.394992,1,http://www.caltrain.com/stations/sanfranciscostation.html,0,ctsf,NB,1
70012,70012,San Francisco Caltrain,37.776348,-122.394935,1,http://www.caltrain.com/stations/sanfranciscostation.html,0,ctsf,SB,1
70021,70021,22nd St Caltrain,37.757599,-122.39188,1,http://www.caltrain.com/stations/22ndstreetstation.html,0,ct22,NB,2
70022,70022,22nd St Caltrain,37.757583,-122.392404,1,http://www.caltrain.com/stations/22ndstreetstation.html,0,ct22,SB,2

这是我的javascript函数,用于将stop_names索引转换为datalist

get('../data/stops.txt').then(function(response) {
      //console.log("Success!", response.split(/(\r\n|\n)/));
      var stop_list = response.split(/(\r\n|\n)/);
      var re = /,/;
      var headers = stop_list.shift().split(re);
      var index = headers.indexOf("stop_name");
      //Removing [index] at return val.split(re)[index]; should return an array of arrays of each split value
      var res = stop_list.map(function(val, key) {
        return val.split(re)[index];
      }).filter(Boolean);

       var str = '';
        var i;
        for (i = 0; i < res.length; i++) {
           str += '<option value="'+res[i]+'" />';
        }
        var s_list=document.getElementById("slist");
        s_list.innerHTML = str;
    }, function(error) {
      console.error("Failed!", error);
    });

这非常完美。但由于第一行与第2行具有相同的停止名称。

如果stop_name和plate_form相同,我想要的只是获取一个stop_name结果集。

2 个答案:

答案 0 :(得分:1)

在定义res以删除重复值时,您需要做的就是在链的末尾添加一个过滤器。 该问题已经解决了几次:Unique values in an array

看起来像这样:

var res = stop_list
  .map(function(val, key) {
    return val.split(re)[index];
  })
  .filter(function(value, index, self) { 
    return self.indexOf(value) === index;
  });

答案 1 :(得分:1)

我喜欢雨果的回答。我想补充几件,因为你想验证平台是否也是独一无二的。

var stop_list = response.split(/(\r\n|\n)/);
var re = /,/;
var headers = stop_list.shift().split(re);
var index = headers.indexOf("stop_name");
var platIndex = headers.indexOf("platform_code");

var res = stop_list
  .map(function(val, key) {
    return val.split(re)[index] ? val.split(re)[index] + ',' + val.split(re)[platIndex] : '';
  })
  .filter(function(value, index, self) { 
    return value && self.indexOf(value) === index;
  });

 var str = '';
        var i;
        for (i = 0; i < res.length; i++) {
           str += '<option value="'+res[i].split(re)[0]+'" />';
        }

console.log(str);
//str: <option value="San Francisco Caltrain" /><option value="22nd St Caltrain" /><option value="22nd St Caltrain" />

所有platform_codes对于每个stop_name都是唯一的,因此我将前两个更改为使用NB获取上述输出。