首页 > 代码库 > yii2_方便地返回Json
yii2_方便地返回Json
{ msg : ‘返回消息‘, status : 自定义响应代码, data : ‘‘, }
方法1
namespace app\lib; class Response extends \yii\web\Response{ public function alert($message, $code = 1, $data = null){ $this->format = self::FORMAT_JSON; $this->data =http://www.mamicode.com/ [ ‘message‘ => $message, ‘code‘ => $code, ‘data‘ => $data ] return $this; } } //修改response组件的配置后,就可以这样调用了嘛 return Yii::$app->response->alert(‘余额不足‘);
方法2
‘response‘ => [ ‘on beforeSend‘ => function($event){ $response = $event->sender; if( $response->format != \yii\web\Response::FORMAT_JSON //没设定format为JSON && is_array($response->data) //数组 ){ $data = $response->data; $response->data =http://www.mamicode.com/ [ ‘message‘ => $data[0], ‘code‘ => isset($data[1]) ? $data[1] : 0, ‘data‘ => isset($data[2]) ? $data[2] : ‘‘, ]; $response->format = \yii\web\Response::FORMAT_JSON; } } ], //于是action可以这样用: return [‘余额不足‘]; return [‘操作成功!‘, 0]; return [‘搜索结果‘, 0, $dataList]; return $this->render(‘xxx‘); //此时返回的是string,beforeSend里有is_array的判断,所以不会影响模板的输出
yii2_方便地返回Json
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。