yii框架学习(二)
- 模型
- orderby的使用:
->orderBy(['addtime'=>SORT_DESC, 'sort'=>SORT_ASC])->all() - 在使用find()查询的时候, 指定查询字段:
find()->select('id, title, content') 指定查询的字段 - 块赋值, 使用attributes, 比如 $psychological->attributes = $input; 把数组一次性赋值给attributes 属性, 但是要注意, 要确保模型类中的rules方法, 已经包含了要赋值的字段. 否则attributes 属性接收不到值. 就不能保存成功
- where 作为查询条件单独拿出来的时候, 想使用 < > >= <= <> 进行范围查询的时候, 要怎么写?
- $where = [
- 'and',
- ['<', 'minscore', $score],
- ['>', 'maxscore', $score],
- ];
- //查询满足minscore<$score并且maxscore>$score 的记录
-
//随机查询数据库中的数据
- $ids = [];
for($i=1; $i<=15; $i++){
$ids[] = mt_rand(1,3993); //生成随机数组
}
- $where = [
'and',
['in', 'id', $ids], //查询id 在 $ids 数组里的数据
];
- $where = [
- yii2中同时连接两个或以上数据库:(如果在本地开发完,传到线上服务器, 需要把配置的数据库的用户名和密码改成线上数据库的
)- 在config目录下web.php文件中的components数组里配置
- 'db2' => [
- 'class' => 'yii\db\Connection',
- 'dsn' => 'mysql:host=localhost;dbname=quickapp',
- 'username' => 'root',
- 'password' => 'root',
- 'charset' => 'utf8',
- ],
- 'db2' => [
在继承ActiveRecord的模型中设置表名,rules等,必须要注意一点, yii默认连接的是components里面的db设置的数据库, 所以当连接其他数据库的时候, 就必须要重写 getDb() 方法, 很简单
- public static function getDb()
- {
- return \Yii::$app->db2; //db2就是components里的db2下标
- }
OK, 可以使用了.
- public static function getDb()
- 在config目录下web.php文件中的components数组里配置
- yii打印SQL语句:
- echo RecycleModel::find()
- ->alias('r')
- ->select('r.name as rubbish, c.id, c.name, c.code, c.inc, c.des,c.req')
- ->leftJoin(['c'=>RecycleCateModel::tableName()], 'r.category_id=c.id')
- ->where($where)
- ->orderBy(['modified'=>SORT_DESC])
- ->limit('10')
- ->asArray()->createCommand()->getRawSql();exit;
- echo RecycleModel::find()
添加数据()
- $usercode = \Yii::$app->db->createCommand()
- ->batchInsert(UserVoucher::tableName(), ['code', 'cat_id','userId', 'gettime', 'expire'], [
- [$code['code'], $id, $userId, time(), $code['expire']],
- ])->execute(); // \Yii::$app->db 这里的db, 如果换成db2, 就是往db2数据库里插入数据.
- $usercode = \Yii::$app->db->createCommand()
- 连表查询分页
- $count = VoucherCode::find()
->alias('v')
->leftJoin(['c'=>RubbishCate::tableName()], 'v.cat_id=c.id and v.is_delete=0')
->where($where)
->count(); //查询符合连表数据总数
$p = new Pagination(['totalCount'=>$count, 'pageSize'=>15]);
$code = VoucherCode::find()
->alias('v')
->leftJoin(['c'=>RubbishCate::tableName()], 'v.cat_id=c.id and v.is_delete=0')
->select('v.*, c.name')
->where($where)
->offset($p->offset)
->limit($p->limit)
->asArray()
->all(); //查询数据
return $this->render('/rubbish-voucher/list', ['code'=>$code, 'pagination'=>$p]);
//views视图调用
- <?php echo \yii\widgets\LinkPager::widget([
'pagination' => $pagination,
'prevPageLabel' => '上一页',
'nextPageLabel' => '下一页',
'firstPageLabel' => '首页',
'lastPageLabel' => '尾页',
'maxButtonCount' => 5,
'options' => [
'class' => 'pagination',
],
'prevPageCssClass' => 'page-item',
'pageCssClass' => "page-item",
'nextPageCssClass' => 'page-item',
'firstPageCssClass' => 'page-item',
'lastPageCssClass' => 'page-item',
'linkOptions' => [
'class' => 'page-link',
],
'disabledListItemSubTagOptions' => ['tag' => 'a', 'class' => 'page-link'],
])
?>
- $count = VoucherCode::find()
- 条件查询:
- $status = \Yii::$app->request->get('status', ''); //获取用户传入的条件
- $where = [];
- if($status != ''){
- $where['status'] = $status;
- }
- $where['is_delete'] = 0;
- $status = \Yii::$app->request->get('status', ''); //获取用户传入的条件
- 多对多关联
- //课程表和用户表多对多关联, 课程course模型里获取用户表字段, 中间表为 user_course, 中间表写在viaTable()里
public function getUser() - {
- return $this->hasMany(User::className(), ['id'=>'uid'])->viaTable('user_course', ['course_id'=>'id']);
- }
- //或者使用via()
- //获取关联表的属性
- $user = Course::findOne($v['id'])->user;
- //统计有多少人
- $num = count(Course::findOne($v['id'])->user);
- //课程表和用户表多对多关联, 课程course模型里获取用户表字段, 中间表为 user_course, 中间表写在viaTable()里
- 接口返回分页数据
- $count = Course::find()->where($where)->count(); //数据总数
- $p = new Pagination(['totalCount'=>$count, 'pageSize'=>$pagesize]); //实例化分页类
- $course = Course::find()->select('id, title, pic_url, sections, teacher, fee, free')->where($where)->offset(($page-1)*$pagesize)->limit($p->limit)->all(); //前端传入第几页$page和每页显示多少条$pagesize, 主要是offset方法里的参数怎么写
或者这么写
- $course = Course::find()->select('id, title, pic_url, sections, teacher, fee, free')->where($where)->offset(($page-1)*$pagesize)->limit($pagesize)->all();
- $count = Course::find()->where($where)->count(); //数据总数
- $model->errors; 打印数据验证过程中的错误信息
- 根据where条件查询指定字段, 拼接field时候, 如果有重复字段仍然可以正常查询的. 并且如果没有指定where条件, 默认查询几个字段
- if(isset($refund_rate))
- $where['refund_rate'] = $refund_rate;
- if(isset($row_sate_rate))
- $where['row_sate_rate'] = $row_sate_rate;
- if(isset($film_playnum))
- $where['film_playnum'] = $film_playnum;
- if(isset($layout_ratio))
- $where['layout_ratio'] = $layout_ratio;
- if(isset($person_time))
- $where['person_time'] = $person_time;
if(isset($date))
$where['date'] = $date; - //设置查询的指定字段
- $field = '';
- if(isset($where)){
- $field = implode(',', array_keys($where));
- }
- $field .= ', id, movie_name, split_box_total, synthesize_total, date '; //多加date 并不会报错
- $result = TicketMovie::find()->select($field)->where($where)->offset(($page-1)*$pagesize)->limit($pagesize)->asArray()->all();
- if(isset($refund_rate))
- orderby的使用:
yii框架学习(二)的更多相关文章
- Yii框架学习笔记(二)将html前端模板整合到框架中
选择Yii 2.0版本框架的7个理由 http://blog.chedushi.com/archives/8988 刚接触Yii谈一下对Yii框架的看法和感受 http://bbs.csdn.net/ ...
- Yii框架学习 新手教程(一)
本人小菜鸟一仅仅,为了自我学习和交流PHP(jquery,linux,lamp,shell,javascript,server)等一系列的知识,小菜鸟创建了一个群.希望光临本博客的人能够进来交流.寻求 ...
- Struts2框架学习(二) Action
Struts2框架学习(二) Action Struts2框架中的Action类是一个单独的javabean对象.不像Struts1中还要去继承HttpServlet,耦合度减小了. 1,流程 拦截器 ...
- YII框架学习(二)
YII框架的增删改查 例:一个新闻表的增删改查: (1)首先使用gii工具生成控制器和模型 (2)控制器 <?php class NewsController extends Controlle ...
- Yii 框架学习--01 框架入门
Yii 是一个高性能的,适用于开发 WEB2.0 应用的 PHP 框架. Yii目前有两个主要的版本: 2.0 和 1.1.本文以YII 2.0.7为例. 环境需求 Yii2.0 框架有一些系统上的需 ...
- PHP开发框架之YII框架学习——碾压ThinkPHP不是梦
前 言 JRedu 程序猿是一种慵懒的生物!能少敲一行代码,绝对不会多敲一个字符!所以,越来越多的开发框架应运而生,在帮助我们完成功能的同时,极大程度上也帮我们节省了人力物力,而且也提高了系统的 ...
- Yii框架学习资源盘点
盘点一些Yii框架的常用学习资源. 1.Yii中文论坛 https://www.yiichina.com/ 2.Yii中文网 http://www.yii-china.com/ 3.魏曦教你学Yii2 ...
- <yii 框架学习> yii 框架改为中文提示
工作需要用到yii框架,但发现yii框架自带的提示都是英文的.上网找资料才发现其实可以自己陪置 . 将项目protected/config/main.php里的app配置加上language=> ...
- YII框架学习(一)
1.安装: windows:将php命令所在的文件夹路径加入到环境变量中,通过cmd命令:进入yii框架中的framework目录,执行: php yiic webapp ../cms linux:类 ...
随机推荐
- 第十三章 字符串(一)之 String
这一节来学习String的特性和方法. 一.String对象的不变性 不变性:String对象是由一个final char[] value 数组实现的,因此String对象是不可变的.任何看起来改变S ...
- 函数&回调函数&匿名函数&自调函数
- Java基础题记录
1. 装箱和拆箱 装箱:自动将基本数据类型转换为包装器类型即引用数据类型 拆箱:将包装器类型转换为基本数据类型 2. Java的8中基本数据类型 关键字 字节数 范围 默认值 boolelan 1by ...
- [开源] LaravelPlus - 基于 Laravel 魔改,为方便实际业务使用 - 开发中
目的 为了减少重复 CURD 和新项目的配置麻烦等问题,(就是为了骗星星:LaravelPlus )如: 现有的 infyomlabs/laravel-generator CODE 生成工具虽然好用, ...
- Sql 中的索引
转载:https://www.cnblogs.com/hyd1213126/p/5828937.html
- [C#]访问共享文件夹或者磁盘(需要用户名密码)
有项目要求使用对方本地管理员访问访问对方D盘,网上找到一段API,刚开始可以使用一段时间,升级到1903就失效了,一脸懵逼啊 using System; using System.Collection ...
- ModbusRtu通信报文详解【二】
这里接着上一篇内容对ModbusRtu的通信报文做个详细描述: [1]强制单个线圈 功能码:05H [2]预置单个寄存器 功能码:06H [3]强制多个线圈 功能码;0FH [4]预置多个寄存器 功能 ...
- A Pythonic Card Deck: __len__ & __getitem__ & for 循环的嵌套
1. 列表生成式的嵌套 for 循环: 示例如下: li1 = range(1,6) li2 = list("ABC") # list("ABC") 的结果为 ...
- canva绘制圆角矩形
在做组态的时候,需要支持矩形圆角格式,但是因为canvas本身不带有圆角矩形,需要自行算出坐标进行绘制 方案一.统一圆角 <!DOCTYPE html> <html> < ...
- day8 socket
代码: 例子1:socket tcp 通讯 server端 import socketserver = socket.socket()ip_port = ("127.0.0.1", ...