文件上传将字符串数据转换为json数据javascript

时间:2018-06-28 00:58:56

标签: javascript jquery html json

我正在加载json数据文件,并且数据以字符串形式读取。我试图使用JSON.parse将该字符串转换为JSON对象,但仍为字符串。

这是JSON文件

{
    "annotations": {
        "a": [{
                "AA00": [4.9724, 6.7862, 1.568737, 4.9943, 17.4203, 1.568737]
            },
            {
                "AA01": [6.5117, 17.4155, -1.572977, 6.5584, 6.7322, -1.572977]
            },
            {
                "AA02": [7.7934, 6.7196, 1.575093, 7.7473, 17.4463, 1.575093]
            },
            {
                "AA03": [9.7196, 17.3718, -1.563688, 9.7145, 9.6473, -1.563688]
            },
            {
                "AA04": [12.2965, 24.9181, -1.558673, 12.4939, 11.9399, -1.558673]
            }
                ]
                    ,
            "p": [{"HOME": [9.60, 6.22, 0.0]}]
        }

}

jquery代码;-

$('#annotation-file-upload').on('change', function(){
            if (this.files && this.files[0]) {
            var reader = new FileReader();
            reader.onload = function (e) {      
                console.log(typeof reader.result)
                annotationsObject = JSON.parse(JSON.stringify(reader.result))
                console.log(annotationsObject)
                console.log(typeof annotationsObject)
            };
            reader.readAsText(this.files[0])

        }
        })

1 个答案:

答案 0 :(得分:0)

您当前正在使用

annotationsObject = JSON.parse(JSON.stringify(reader.result))

但是reader.result已经是string了-对其调用stringify没有任何意义。您的输出将只是您的输入,即字符串。而是解析 just 字符串,而不先字符串化:

document.querySelector('input').addEventListener('change', function() {
  if (this.files && this.files[0]) {
    var reader = new FileReader();
    reader.onload = function(e) {
      console.log(typeof reader.result)
      annotationsObject = JSON.parse(reader.result);
      console.log(annotationsObject)
      console.log(typeof annotationsObject)
    };
    reader.readAsText(this.files[0])
  }
});
<input type="file">