繁体   English   中英

如何使用javascript将以下格式更改为json格式

[英]how to change the below format to json format using javascript

我想转换这种数据格式:

"color;blue:36 ,red:27"

转换为以下JSON格式:

{
  "Record": [
    {
      "type": "color",
      "data": "blue",
      "total": "36"
    },
    {
      "type": "color",
      "data": "red",
      "total": "27"
    }
  ]
}

该建议首先用分号分隔字符串以获取type和数据,并以' ,'分隔。 然后按冒号拆分以获取datatotal

 var data = 'color;blue:36 ,red:27', parts = data.split(';'), object = { Record: parts[1].split(' ,').map(function (a) { var p = a.split(':'); return { type: parts[0], data: p[0], total: p[1] }; }) }; console.log(object); 
 .as-console-wrapper { max-height: 100% !important; top: 0; } 

很难理解给定输入的确切问题,但这应该足够了:

  var input = "color;blue:36 ,red:27"; // Reassignment is bad, but will shorten the example input = input.split(";"); var attributeName = input[0]; // No length validations, also bad var attributes = input[1].split(","); var results = {"Record": attributes.map(function(a) { a = a.split(":"); return {"type":attributeName, "data":a[0].trim(), "total": a[1].trim()} })}; console.log(results) 

这是我会做的

 var dataFormat = "color;blue:36 ,red:27" var splitFormat = dataFormat.split(";"); var type = splitFormat[0]; var colors = splitFormat[1].split(","); var results = []; _.each(colors, function(color) { console.log(color) var obj = { "type": type, "data": color.split(":")[0], "total":color.split(":")[1] } results.push(obj); }); var final = { "Result": results }; $("#result").html(JSON.stringify(final)); 
 <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div id="result"></div> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM