序列化

序列化 -json变成字符串形式

例子:
var json={name:123,age:13};
alert(JSON.stringify(json));

你可能感兴趣的:(序列化)