As already mentioned, you can use jQuery json to edit the object. Let me demonstrate how you can do this with a little code:
take this JSON object:
{
"people":[
{"name":"Bob","score":9},
{"name":"Joe","score":6},
{"name":"Tom","score":7}
],
"projects":[
{"id":2347,"entries":5},
{"id":8563,"entries":3}
],
"lastUser":"Bob"
}
, JSON -... , jQuery ajax- . ( ) script, :
$.getJSON(,function(response){
response.lastUser="Tom";
$.post(,response,function(){
alert("Object Saved");
});
});
, !