I am having a problem while converting an array into Json object. I have an array which contain json objects/objects, when i convert that array into Json object it combine/concatenate array data rahter than making json array. lets suppose array have two json objects. when i convert it into json object using
var jsondata = JSON.stringify(array);
var jsn = JSON.parse(jsondata);
here is my code:
var array = new Array();
function addBatch(){
var data = $.toJSON($('#risk').serializeArray());
//data = [{"name":"user","value":"INCRE"},{"name":"period","value":"100"},{"name":"hori","value":"12"},{"name":"conf","value":"32"}]
var jsonData = JSON.stringify(data);
var json=JSON.parse(jsonData);
console.log('After Converting Json');
//store data in array
array.push(json);
}
// function that convert array into json:
function saveBatch(){
var jsonData = JSON.stringify(array);
json = JSON.parse(jsonData);
console.log("Batch: "+json);
}
it give me following output:
[{"name":"user","value":"HIST"},{"name":"period","value":"12"},{"name":"hori","value":"32"},{"name":"conf","value":"12"}],[{"name":"user1","value":"INCRE"},{"name":"period","value":"12"},{"name":"hori","value":"32"},{"name":"conf","value":"12"}]
it should be like this:
[
[
{"name":"obj1"},{"value":"data"}
],
[
{"name":"obj2"},{"value":"data2"}
]
]
dont know why this is happening. I search on Google as well but i didn't find any way except
var jsondata = JSON.stringify(array);
var jsn = JSON.parse(jsondata);

JSON.stringifyto give the output you say it is outputting. Please provide a complete test case (which includes the original data). – Quentin Nov 6 '12 at 11:35{"value","data2"}is invalid. It should be{"value":"data2"}. Is that just a typo in the question? – James Allardice Nov 6 '12 at 11:36jsondata? Your output is not valid JSON or JavaScript. You need to show us whatarrayis. – Aesthete Nov 6 '12 at 11:37