搬瓦工VPSThinkPHP5提示variable type error: array1ThinkPHP5提示variable type error: array是因为在ThinkPHP5中不允许直接访问控制器时,通过return方法直接返回数组。 出现这个错误时,使用json函数处理以下返回的数据即可,如: $data = [...]; return json($data);赞 (0)2020-12-08 11:09:09阅读(3324)标签:array / error / thinkphp / type / variable / 提示
域名/CDN/SSLTP5中POST接收数组出现:variable type error:array在thinkphp5中,使用post方式接收数组参数会出现错误提示:variable type error:array 出现错误代码如下: $ids = $request->post('ids'); 解决方法一:使用变量修饰符,具体代码如下: $ids = $request->post('ids/a');//调用请求类requ...赞 (0)2020-12-06 21:56:08阅读(2926)标签:array / error / post / tp / type / variable / 出现 / 接收 / 数组