直接复制js 的json数据,用php的方法总是返回空,肯定是格式不正确
后面想到了一个解决办法
先在页面上用
console.log(JSON.stringify(cityData3));
复制出来对应的字符串,就能直接通过php方法转为数组 了
json_decode(cityData3, true);
直接复制js 的json数据,用php的方法总是返回空,肯定是格式不正确
后面想到了一个解决办法
先在页面上用
console.log(JSON.stringify(cityData3));
复制出来对应的字符串,就能直接通过php方法转为数组 了
json_decode(cityData3, true);