使用javascript从csv文件创建并填充select元素

时间:2013-10-04 18:54:49

标签: javascript html5 csv

在csv文件中循环有点问题。我也不确定是否有更简单的加载文本文件的方法。我知道每个循环都有意义,但我不确定csv文件中的单个项目。我想要整行文本,并将两段文本分配给选项的值和选项部分。有什么建议来清理它吗?

*更新包含以下建议。没有错误,但我的CSS文件没有捕获创建的元素,因此格式化已关闭,选择框仅显示空白。

<script>
             function processCSV(file,parentNode)
             {
                var frag = document.createDocumentFragment()
                , lines = file.split('\n'), option;                 

                for (var i = 0, len = lines.length; i < len; i++){
                    option = document.createElement("option");
                    option.setAttribute("value", lines[i]);
                    option.innerHTML = lines[i];                        
                    frag.appendChild(option);
                    }
                plant_select.appendChild(frag);
             }

             var plant_select = document.createElement("select");  
             var intial_option = document.createElement("option");
             var datafile = '';
             var xmlhttp = new XMLHttpRequest();

             plant_select.setAttribute("class", "selectbox");   
             plant_select.setAttribute("id", "plant_select");
             intial_option.setAttribute("value","")
             intial_option.setAttribute("disabled","disabled")
             intial_option.setAttribute("selected","selected")
             intial_option.innerHTML = "Please select a Plant";
             plant_select.appendChild(intial_option)

             xmlhttp.open("GET","http://localhost:8080/res/plants.csv",true);
             xmlhttp.send();


             xmlhttp.onreadystatechange = function()
             {
                if(xmlhttp.status==200 && xmlhttp.readyState==4)
                {
                    processCSV(xmlhttp.responseText, plant_select);
                }
             }
        </script>

2 个答案:

答案 0 :(得分:1)

假设显示文本是第一个元素,CSV中的值为第二个,并且您知道您的CSV格式正确。

var dflines = datafile.split("\n");
for (var i=0; i<dflines.length; i++) {
    dflines[i] = dflines[i].split(",");
    plant_select.options[plant_select.options.length+1] = new Option(dflines[i][0],dflines[i][1],false,false);
}

将为您当前的选择添加新的选择选项。

答案 1 :(得分:1)

您需要在这里做很多事情:

  • 您需要正确处理文字。不要在字符串或数组上使用for...in。它没有做你想做的事。而是将文件拆分为一个行数组并处理这些行。
  • 在您的处理循环中,您将在每次运行时修改DOM。这会不必要地引起回流和重新涂漆。相反,请使用document fragment
  • 您需要在回调中使用处理代码,或者最好在回调中调用的函数中使用。

所以你的处理功能:

    function processCSV(file,parentNode){
      var frag = document.createDocumentFragment()
        , lines = file.split('\n')
        , option
        ;
      for (var i = 0, len = lines.length; i < len; i++){
        option = document.createElement("option");
        option.setAttribute("value", "Choice"); 
        frag.appendChild(option);
      }
      parentNode.appendChild(frag);
    }

然后你的XHR回调:

xmlhttp.onreadystatechange = function(){
  if(xmlhttp.status==200 && xmlhttp.readyState==4){
    processCSV(xmlhttp.responseText, plant_select);
  }
}

这不执行任何每行处理,但我需要您提供更多信息以获得任何帮助。您可能希望用逗号分割并查看单个数据项,您可以使用processCSV函数中的嵌套循环来执行此操作。