当前位置: 首页 > 工具软件 > RageFrame > 使用案例 >

yii框架学习2--rageframe2

相威
2023-12-01

rageframe2 yii框架的集合

https://gitee.com/chuckchill/rageframe2/blob/master/docs/guide-zh-CN/sys-widget.md

返回错误信息

throw new NotFoundHttpException('找不到订单信息');

获取前台当前登录会员id

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'"))
 类似资料: