https://gitee.com/chuckchill/rageframe2/blob/master/docs/guide-zh-CN/sys-widget.md
throw new NotFoundHttpException('找不到订单信息');
Yii::$app->user->identity->member_id
// 记录上一页跳转
$this->setReferrer($action->id);
//返回上一页
return $this->referrer();
根据数据库生成模型
php yii gii/model --ns=app\\models --modelClass=AccountLog --tableName=pl_account_log
ns -- 模型生成后所在地址
modelClass --模型类名
tableName – 关联的数据表
打印SQL语句
->createCommand()->getRawSql();
判断会员是否登录
Yii::$app->user->isGuest
->andWhere(new yii\db\Expression("binary promo_code = '$promo_code'"))