yii2代码块

yii2-代码块

得到相应内容 格式化为json格式

1
Yii::$app->getResponse()->format = Response::FORMAT_JSON;

设置身份验证信息

1
Yii::$app->getUser()->setIdentity($identity)

自定义键名

1
$users = $connection->createCommand('SELECT * FROM user')->index("你的下标")->select("你查询的字段")->queryAll();

实现返回上一页(1)

1
return $this->goBack(Yii::$app->getRequest()->headers['Referer']);

实现返回上一页(2)

1
Yii::$app->request->urlReferrer;