Home  >  Article  >  Web Front-end  >  Detailed explanation of JavaScript conversion and parsing JSON method examples_javascript skills

Detailed explanation of JavaScript conversion and parsing JSON method examples_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:30:101331browse

The examples in this article describe JavaScript conversion and parsing JSON methods. Share it with everyone for your reference, the details are as follows:

The json format data is as follows:

var json = { 'jquery': [{ "id": "1", "type": "ASP.NET", "title": "JSON全解析"}] }
    alert(json.jquery[0].id);
    alert(json.jquery[0].type);
    alert(json.jquery[0].title);

Javascript parses json data:

window.onload = function() {
 var json = { "China": "[{'City':'上海','value':'1'},{'City':'南京','value':'2'},{'City':'杭州','value':'3'},{'City':'武汉','value':'4'}]" }
 var datas = eval(json.China);
 for (var i = 0; i < datas.length; i++) 
 {
  alert(datas[i].City);
  alert(datas[i].value);
 }
}

Supplement: jQuery parsing json method:

Use the eval function to parse and jquery’s each method to traverse

Use JQuery to parse JSON data. As the transmission object of JQuery asynchronous request, the result returned after JQuery request is a json object. What is considered here is the form of string returned by the server in JSON form. For encapsulation using plug-ins such as JSONObject The JSON object is similar to this and will not be explained here.

The JSON string set is first given here. The string set is as follows:

var data=" 
{ 
root: 
[ 
  {name:'1',value:'0'}, 
  {name:'6101',value:'北京市'}, 
  {name:'6102',value:'天津市'}, 
  {name:'6103',value:'上海市'}, 
  {name:'6104',value:'重庆市'}, 
]
}"; 

Based on the data types obtained asynchronously by JQuery - json objects and strings, here we introduce the results processing methods obtained by the two methods.

eval()

For the JSON string returned by the server, if the jquery asynchronous request does not specify the type, or accepts it in string mode, then it needs to be objectified. It is not too troublesome, or it is to put the string in eval() Executed once. This method is also suitable for obtaining json objects using ordinary javascipt. The following is an example:

// 转换为json对象
var dataObj=eval("("+data+")");

Why do we need to add ("(" data ")"); to eval here?

The reason is: the problem of eval itself. Since json starts and ends with "{}", it will be processed as a statement block in JS, so it must be forced to be converted into an expression.

The purpose of adding parentheses is to force the eval function to convert the expression in the parentheses into an object instead of executing it as a statement when processing JavaScript code. For example, take the object literal {}. If no outer brackets are added, then eval will recognize the braces as the beginning and end marks of the JavaScript code block, and {} will be considered to execute an empty statement. So the following two execution results are different:

// return undefined
alert(eval("{}"); 
// return object[Object]
alert(eval("({})");

This kind of writing can be seen everywhere in JS. For example: (function()) {}(); When doing closure operations, etc.

//输出root的子对象数量 
alert(dataObj.root.length);
$.each(dataObj.root,fucntion(idx,item){ 
  if(idx==0){ 
    return true; 
  } 
  //输出每个root子对象的名称和值 
  alert("name:"+item.name+",value:"+item.value); 
}) 

For general js to generate json objects, you only need to replace the $.each() method with a for statement, and the others remain unchanged.

JSON string returned by the server

For the JSON string returned by the server, if the jquery asynchronous request sets the type (usually this configuration attribute) to "json", or uses the $.getJSON() method to obtain the server return, then the eval() method is not needed Because the result obtained at this time is already a json object, you only need to call the object directly. Here, the $.getJSON method is used as an example to illustrate the data processing method:

$.getJSON("http://www.xxxx.com/",{param:"gaoyusi"},function(data){ 
  //此处返回的data已经是json对象 
  //以下其他操作同第一种情况 
  $.each(data.root,function(idx,item){ 
    if(idx==0){ 
      //同countinue,返回false同break 
      return true;
    } 
    alert("name:"+item.name+",value:"+item.value); 
  }); 
}); 

What needs special attention here is that the eval() method in method 1 dynamically executes the string (possibly a js script), which can easily cause system security issues. Therefore, you can use some third-party client script libraries that circumvent eval(). For example, JSON in JavaScript provides a script library of no more than 3k.

The second method of parsing is to use Function objects. Its typical application is the parsing of returned data such as success under the AJAX method in JQuery.

var json='{"name":"CJ","age":18}';
data =(new Function("","return "+json))();

The data at this time is a json object that will be parsed.

I hope this article will be helpful to everyone in JavaScript programming.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn