
yii2
向右看齐--
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
yii2 model 模型代码规范
(1)定义属性(2)tableName()(3) rules()(4) 自定义rules的规则验证方法(5) attributeLabels()(6) beforSave afterSave afterDelete ...(7) 关联模型(8) Model public 的方法(9) Model public static 的方法原创 2018-03-20 19:30:34 · 636 阅读 · 0 评论 -
YII2 joinWith的使用实例
1.首先要有两个模型投票劵表(vote_conpon_type) 模型为 VoteCouponType投票券子表(vote_coupon) 模型为 VoteCoupon模型VoteCouponType必填内容:public function getVoteCoupon(){ return $this->hasMany(VoteCoupon:...转载 2019-04-16 10:09:28 · 1197 阅读 · 0 评论 -
yii2 生成二维码(2)
1. 使用:"2amigos/yii2-qrcode-helper" : "*",可以直接生成二维码 缺点是不能生成带logo的二维码(我没找到 有找到的可以告诉我下)use dosamigos\qrcode\lib\Enum;use dosamigos\qrcode\QrCode;public function actionQrcode(){ $id = intval...原创 2019-01-22 14:32:00 · 1257 阅读 · 0 评论 -
yii2.0 redirect 无法正常跳转 beforeAction
最近在开发功能中 发现redirect竟然不能正常跳转,查了好长时间,还以为写的代码有问题,主要是在beforeAction中做了是否登录的判断,未登录则跳转到登录页面,所有的类继承的这个baseControllerpublic function beforeAction($action) { if(parent::beforeAction($action)) ...转载 2019-01-26 18:32:53 · 1058 阅读 · 0 评论 -
yii2 获取redis缓存信息
//获取redis 缓存个数$cache = Yii::$app->cache->redis;$size = $cache->executeCommand('DBSIZE');//根据key获取redis值$key = '*';if($name = trim($_GET['name'])) { $key = $name . $key;}$data = $...原创 2018-09-13 11:04:30 · 1052 阅读 · 0 评论 -
yii2 DateTimePicker简单使用
yii2 使用DatePicker类 参考:https://www.cnblogs.com/l-zl/p/7373358.html在使用DatePicker类时发现没有 时分 的设置,所有选择了DateTimePicker类 安装如下composer.json中添加 :"2amigos/yii2-date-time-picker-widget" : "*",<?phpu...原创 2018-08-20 16:36:19 · 2049 阅读 · 0 评论 -
yii2 生成二维码
composer 安装 php composer.phar require 2amigos/qrcode-library:~1.1or add "2amigos/qrcode-library": "~1.1"<?phpuse Da\QrCode\Contracts\ErrorCorrectionLevelInterface;use Da\QrCode\Qr...原创 2018-08-09 16:41:23 · 5992 阅读 · 0 评论 -
yii2 phpexecl导入
composer require phpoffice/phpexcel : "*"$fileType = \PHPExcel_IOFactory::identify($file);$excelReader = \PHPExcel_IOFactory::createReader($fileType);$phpExcel = $excelReader->load($file)-&g...原创 2018-07-23 17:00:32 · 842 阅读 · 0 评论 -
yii2 使用Ueditor 报错:请求后台配置项http错误,上传功能将不能正常使用!
yii2中引入Ueditor :在composer.json中添加:"crazydb/yii2-ueditor": "*",再composer update之前使用的Ueditor 并没有出现什么问题 ,今天再次使用时出现了问题:GET http://xxx.cn/ueditor/index?action=config&&noCache=1527044296955 500 (Int...原创 2018-05-23 11:09:52 · 4048 阅读 · 0 评论 -
小程序 图片上传 及后台PHP接收文件
相关连接:https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseImage.htmlhttps://developers.weixin.qq.com/miniprogram/dev/api/wx.uploadFile.html前台代码wxml:<view bindtap="shopLogoChange"&...原创 2019-10-30 08:59:23 · 416 阅读 · 0 评论