标签:
jsonObject需实例化new。
jsonObject=new JSONObject();
jsonObject.put("goodslist", list);
jsonObject.put("product", product);
前台获取:
var productJson = data.match(/<body>([\s\S]*?)<\/body>/)[1];
var json = JSON.parse(productJson);
var product=json.product;
var goodslist=json.goodslist;
标签:
原文地址:http://www.cnblogs.com/master-zxc/p/4747629.html