Yii中的relations方法
以Blog示例: 重点看注释
User类中的relations方法如下
- <span style="font-size:18px;background-color: rgb(255, 255, 255);"> public function relations()
- {
- return array(
- 'posts' => array(self::HAS_MANY, 'Post', 'author_id',
- 'order'=>'posts.update_time DESC',
- 'with'=>'comments:approved', // $user = User::model()->findByPk(1); 这里也查出了每篇post所带的comments
- //approved是comment的命名空间,可以在这里设置
- //'together'=>false, 设置这一项,关联查新将被分为几个SQL语句执行,和性能有关系
- ),
- 'postCount'=>array(
- self::STAT,'Post','author_id',
- 'condition'=>'status='.Post::STATUS_PUBLISHED,
- ),
- );
- }</span>
Post中的方法如下 :
- <span style="font-size:18px;background-color: rgb(255, 255, 255);">public function relations()
- {
- // NOTE: you may need to adjust the relation name and the related
- // class name for the relations automatically generated below.
- return array(
- 'author'=>array(self::BELONGS_TO,'User','author_id',
- //'select'=>'id,username,profile', // 关联查询的选项,如果不设置,则默认为*即整个关联记录
- ),
- 'comments'=>array(self::HAS_MANY,'Comment','post_id',
- 'condition'=>'comments.status='.Comment::STATUS_APPROVED,
- 'order'=>'comments.create_time DESC'),
- 'commentCount'=>array(
- self::STAT,'Comment','post_id',
- 'condition'=>'status='.Comment::STATUS_APPROVED
- ),
- );
- }
- </span>
Comment中的ralations方法如下:
- <span style="font-size:18px;background-color: rgb(255, 255, 255);">public function attributeLabels() //名字和现实标签的映射数组
- {
- return array(
- 'id' => 'Id',
- 'content' => 'Comment',
- 'status' => 'Status',
- 'create_time' => 'Create Time',
- 'author' => 'Name',
- 'email' => 'Email',
- 'url' => 'Website',
- 'post_id' => 'PostID', //对应的博客ID
- );
- }
- </span>
在控制器中写个方法测试一下结果:
- <span style="font-size:18px;background-color: rgb(255, 255, 255);"> public function actionRQ(){
- $post = Post::model()->find('id=:id',array(':id'=>7));
- echo $post->author->username;
- echo "<hr>";
- $posts = Post::model()->with('author','comments')->findAll(); //急切加载
- foreach($posts as $post){
- echo $post->id." |";
- foreach($post->comments as $comment){
- echo $comment->id.": ";
- echo $comment->content."<br>";
- }
- echo $post->author->username."<br>";
- }
- echo "<hr>";
- $user = User::model()->with('posts.comments')->findByPk(1);
- //$user = User::model()->findByPk(1); 这一句和上一句是一样的,因为在User的relations声明的posts也已经加上了关联查询:with=>'comments'
- foreach($user->posts as $post){ //嵌套急切加载
- echo $post->title." (";
- foreach($post->comments as $comment){
- echo $comment->id." : ";
- echo $comment->content."<br>";
- }
- echo ")".$post->tags."<br>";
- }
- echo "<hr>";
- $criteria = new CDbCriteria;
- //$criteria->select = "username";
- //$criteria->order
- //$criteria->limit
- //$criteria->condition
- //$criteria->params
- $criteria->with = array(
- 'posts.comments',
- );
- $users = User::model()->findAll($criteria);
- foreach($users as $user){
- echo $user->username.":<br>";
- //echo $user->password;
- foreach($user->posts as $post){ //嵌套急切加载
- echo $post->title." (";
- foreach($post->comments as $comment){
- echo $comment->id." : ";
- echo $comment->content."<br>";
- }
- echo ")".$post->tags."<br>";
- }
- }
- //动态关联查询,也就是在查询的时候覆盖relations中设置的关联的选项
- echo "<hr>";
- $user=User::model()->with(array(
- 'posts'=>array(
- 'order'=>'posts.update_time DESC',
- 'with'=>array('comments'=>array('order'=>'comments.id ASC')),
- //'together'=>false, //关联声明中设置together 选项为false 以便一些表被连接在单独的SQL语句中,分为几个SQL语句执行
- ),
- ))->findByPk(1);
- echo "demo 的posts数量为:".$user->postCount;
- echo "<br>";
- foreach($user->posts as $post){
- echo $post->id."(";
- echo $post->title."的评论数量是:".$post->commentCount."<br>";
- foreach($post->comments as $comment){
- echo $comment->id." | ";
- }
- echo ")";
- echo "<br>";
- }
- }</span>
- 原文来自 http://blog.csdn.net/littlebearwmx/article/details/8561018
Yii中的relations方法的更多相关文章
- C#中DataTable中的Compute方法使用收集
原文: C#中DataTable中的Compute方法使用收集 Compute函数的参数就两个:Expression,和Filter. Expresstion是计算表达式,关于Expression的详 ...
- Yii中的错误及异常处理
Yii中的错误及异常处理 Yii已经默认已经在CApplication上实现了异常和错误的接管,这是通过php的set_exception_handler, set_error_handler实现的. ...
- Yii中事件触发机制
控制器初始化中添加事件处理方法,在需要触发的地方直接触发 public function init() { parent::init(); // TODO: Change the autogenera ...
- 在yii中使用分页
yii中使用分页很方便,如下两种方法: 在控制器中: 1. $criteria = new CDbCriteria(); //new cdbcriteria数据库$criteria->id = ...
- yii中的自定义组件
yii中的自定义组件(组件就是一些自定义的公用类) 1.在项目目录中的protected/components/Xxxx.php 2.在Xxxx.php中定义一个类,类名必须与文件名相同 3.控制器中 ...
- YII中的表单挂件
利用助手(widget)在页面实现表单 控制器中 <?php class YiiFormController extends Controller { public function actio ...
- Javascript and AJAX with Yii(在yii 中使用 javascript 和ajax)
英文原文:http://www.yiiframework.com/wiki/394/javascript-and-ajax-with-yii /*** http://www.yiiframework. ...
- yii 中设置提示成功信息,错误提示信息,警告信息
方法一: <?php Yii::app()->user->setFlash(‘success’,”Data saved!”); 设置键值名为success的临时信息.在getFlas ...
- 解密yii中CModule::_components和CModule::_componentConfig
array CModule::_components 所有组件对象(CComponent的子类)将作为键值存在该数组中, 键名是定义该组件时使用的键名.例如: protected function r ...
随机推荐
- Codeforces 543E. Listening to Music
Description 题面 Solution 分块套分块,分别对时间和位置进行分块 差不多是一个定期保存信息的方法 对于询问我们不妨求出 \(>=x\) 的答案,然后用 \(m-(>=x ...
- Web后台模拟前端post(带NTLM验证)
using System.Data; using System.Net; using System.IO; using System.Net.Http; using System.Web; using ...
- css内容简介(层叠样式表)
css是对网页编辑的加色,是对其功能的渲染. 根据规范每个元素都有一个display属性,每个元素都有一个------------如div元素他的默认为block. 行内元素和块级元素 块级元素会占据 ...
- out参数
out参数: 参数在方法的内部必须为其赋值:可以同时返回不同类型的值: 在Main方法里定义,在方法里赋值: 输 ...
- Java 并发(一) --- CAS
CAS 原理 先来看看下面的代码是否可以输出预期的值.开启了两个线程,是否会输出200 呢 结果由于并发的原因,结果会小于或等于200 , 原因出现在 count++; 由于这一行代码存在三个操作: ...
- 二、spring-boot-devtools热部署
springboot提供了热部署,需要添加依赖: <dependency> <groupId> org.springframework.boot</groupId> ...
- 简单的CRUD(一)
一.JDBC的概述--(来源于百度) JDBC(Java DataBase Connectivity,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问, ...
- springboot1.5.10兼容高版本6.1.1elasticsearch
1.引入依赖 <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elastic ...
- ecs CentOS 7 安装 mariadb
检查之前是否已经安装 rpm -qa | grep mariadb 如果已安装,卸载 yum remove mysql mysql-server mysql-libs compat-mysql51 开 ...
- 怎么让div显示一行,其余的隐藏。
<style> div{ white-space: nowrap; text-overflow:ellipsis; text-overflow: ellipsis; overflow:hi ...