$.ajax({ type: "POST", url: "", data:{'token':JSON.stringify(token)}, success: function(data){ } });
使用JSON.stringify()转换数组 使用ajax 传值,后台无法json_decode 成数组
如何解决你?
加入下面代码即可
$token=$this->request->param('token/s'); $token=htmlspecialchars_decode($token); $token=json_decode($token,true);