
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 · 567 阅读 · 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 · 1291 阅读 · 0 评论 -
yii2修改默认模板标题
默认模板左上角显示My Application,如果要修改有多种方法,下面提供一种修改方法修改\basic\config\web.php$config = ['id' => 'basic','name'=>'咨询问答系统','basePath' => dirname(__DIR__),'bootstrap' => ['log'],在...原创 2019-03-26 08:02:54 · 648 阅读 · 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 · 260 阅读 · 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 · 1140 阅读 · 0 评论