Ext.encode()与Ext.decode()

15.1Ext.decode()

Ext.decode()函数将Json字符串转成Json对象。

示例:

var jsonStr = "{name:'刘德华',age:52,hometown:'香港'}";

var jsonObj = Ext.decode(jsonStr);

var msg = "name:" + jsonObj.name + ",age:" + jsonObj.age + ",hometown:" + jsonObj.hometown;

Ext.Msg.show({

title:"提示",

msg:msg,

buttons:Ext.Msg.OK,

icons:Ext.MessageBox.INFO

});

 

结果:

Ext.encode()与Ext.decode()

15.2Ext.encode()

Ext.encode()函数将Json对象转换成Json格式字符串。

示例:

jsonStr =Ext.encode(jsonObj);

Ext.Msg.show({

title:"提示",

msg:jsonStr,

buttons:Ext.Msg.OK,

icons:Ext.MessageBox.INFO

});

 

15.1中我们用Ext.decode()函数将Json字符串转成了Json对象,那这里使用Ext.encode()函数将Json对象转成Json格式字符串。

上面代码执行的结果:

Ext.encode()与Ext.decode()

你可能感兴趣的:(json,Ajax)