
yii2
文章平均质量分 77
nanj
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
yii2 通过easywechat获取openID(snsapi_base方式)
1、配置文件paras.php 'wx'=>[ // 公众号信息 'mp'=>[ // 账号基本信息 'app_id' => 'app_id', // 公众号的appid 'secret' => 'secret', // 公众号的秘钥 'token' => 'token', // 接口的token 'aes_key'=>'aes_key', 'lo...原创 2021-08-23 17:19:35 · 593 阅读 · 0 评论 -
yii2中页面跳转所带参数问题
在删除操作后,如果使用return $this->render('index');则会将del带到后续页面中, 比如:basic/web/index.php?r=site%2Fdel&id=169 使用return $this->redirect(['site/index']);即可解决这个问题 ...原创 2019-03-25 20:52:13 · 1310 阅读 · 0 评论 -
yii2修改默认模板标题
默认模板左上角显示My Application,如果要修改有多种方法,下面提供一种修改方法 修改\basic\config\web.php $config = [ 'id' => 'basic', 'name'=>'咨询问答系统', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 在...原创 2019-03-26 08:02:54 · 664 阅读 · 0 评论 -
yii2 增删改查
一、新增 使用model::save()操作进行新增数据 $user= new User; $user->username =$username; $user->password =$password; $user->save() 使用createCommand()进行新增数据 Yii::$app->db->createCommand()->ins...转载 2019-03-26 08:31:54 · 278 阅读 · 0 评论 -
yii2视图页面使用跳转按钮
<?= Html::submitButton('提交', ['class' => 'btn btn-primary tijiao', 'name' => 'submit-button']) ?> <?= Html::a('返回', ['site/index'], ['class' => 'btn btn-primary fanhui']) ?> ...转载 2019-03-26 09:04:55 · 1150 阅读 · 0 评论