解码

编码代码:json.url= encodeURIComponent(json.url);

注意:先编码,再JSON.stringify(json);
在onLoad中解码:

解码代码:json.url = decodeURIComponent(json.url);

注意:先JSON.parse(options.json),再解码

你可能感兴趣的:(解码)