Yii框架常见问题汇总
然用过Yii做了一个小项目了,但是过程中间解决的问题没有随手记下来,导致新项目开始后,以前碰到的问题还得在查一遍,干脆就记下来,以便不时之需。
有新的会随时更新。
1.如何显示ActiveRecord执行的sql语句:
array(
'class'=>'CFileLogRoute',
'levels'=>'trace,error, warning',
),
// uncomment the following to show log messages on web pages
/*
array(
'class'=>'CWebLogRoute',
),
*/
在项目的config/main.php中,找到上面的代码段,添加trace,取消底下一段的注释
2.在生成的_search.php中,如何去掉必须输入项的 "*" 号:
只需要加上一句代码:<?php CHtml::$afterRequiredLabel = '';?>
3.如何处理Model关联的对象为空的情况。
例如:显示员工所属部门,使用TbDetailView时,
'attributes'=>array(......
array('label'=>'所属部门','value'=>!empty($model->department)?CHtml::encode($model->department->name) : '未设置'),
4.如何在下拉列表中显示“未选择”。
<?php echo $form->dropDownListRow($model,'type',CHtml::listData(CodeType::model()->findAll(),'id','name'),array('prompt'=>'[未选择]')) ?>
5.如何在TbGridView中显示CStarRating控件:
<?php $this->widget('bootstrap.widgets.TbGridView',array(
'id'=>'program-grid',
'dataProvider'=>$model->search(),
'afterAjaxUpdate'=>'function(id,data){ $("[id^=\'rating\'] > input").rating({"required":true}); $("[id^=\'rating\'] > div").attr("disabled","disabled"); }',
//'filter'=>$model,
'type'=>'striped bordered',
'columns'=>array(
'id',
'business_id',
'business_name',
'program_code.name::程序类型',
'program_code1.name::开发语言',
array('name'=>'level','type'=>'raw',
'value'=>'$this->grid->controller->widget("CStarRating",
array("starCount"=>"5",
"minRating"=>"1",
"maxRating"=>"10",
"allowEmpty"=>false,
"name"=>$data->id,
"id"=>"rating_" .$data->id,"value"=>$data->level,
),true)',),
array(
'class'=>'bootstrap.widgets.TbButtonColumn',
),
),
)); ?>
6.怎样在Grid中对外键关联的字段进行排序:
例如:Model名为Product,在Model里:
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(
'product_agent'=>array(self::BELONGS_TO,'Agent','manufacturer'),
);
}
public function search()
{
$criteria=new CDbCriteria;
$criteria->with = array('product_agent'); ............... return new CActiveDataProvider(get_class($this), array(
'criteria'=>$criteria,
'sort'=>array('attributes'=> array('id','register_date','product_name','manufacturer','product_agent.name','unit_price','library_count' )),
));
}
在页面里:
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'product-grid',
'dataProvider'=>$model->search(),
//'filter'=>$model,
'columns'=>array(
'id',
'product_agent.name::生产厂商',
array(
'class'=>'CButtonColumn',
'afterDelete'=>'function(link,success,data){if(data != "") alert(data);};'
),
),
)); ?>
7.如何自定义验证:
比如,在出库时判断是否库存不足:
在model中:
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
.......
array('quantity', 'quantityValidator'),
);
}
/*
在库数的验证
*/
public function quantityValidator($attribute,$params)
{
if ( $this->quantity > $this->shipment_product->library_count ) {
$this->addError('quantity', '库存不足!');
}
}
8.如何对一个Model中的日期字段按照一个指定范围进行查询:
在model里添加两个字段:
public $occurrence_date_start;
public $occurrence_date_end;
然后再search方法中:
public function search()
{
$criteria=new CDbCriteria; $criteria->compare('id',$this->id);
if((isset($this->occurrence_date_start) && trim($this->occurrence_date_start) != "")
&& (isset($this->occurrence_date_end) && trim($this->occurrence_date_end) != ""))
$criteria->addBetweenCondition('occurrence_date', ''.$this->occurrence_date_start.'', ''.$this->occurrence_date_end.'');
...... return new CActiveDataProvider(get_class($this), array(
'criteria'=>$criteria,
'sort'=>array('attributes'=>array('id','occurrence_date','shipment_customer.name','shipment_product.product_name','shipment_staff.name',
'shipment_code.code_name','quantity','total_amount','actual_back_section_date',)),
));
}
在前台页面,我这里用的是Yii内置的CJuiDatePicker:
<div class="row">
<?php echo $form->label($model,'occurrence_date_start'); ?>
<?php $this->widget('zii.widgets.jui.CJuiDatePicker', array(
'model'=>$model,
'attribute'=>'occurrence_date_start',
// additional javascript options for the date picker plugin
'options'=>array(
'showAnim'=>'fold',
'showMonthAfterYear'=>'false',
),
'htmlOptions'=>array(
'style'=>'height:20px;',
), 'language'=>'zh_cn',
));
?>
</div>
<div class="row">
<?php echo $form->label($model,'occurrence_date_end'); ?>
<?php $this->widget('zii.widgets.jui.CJuiDatePicker', array(
'model'=>$model,
'attribute'=>'occurrence_date_end',
// additional javascript options for the date picker plugin
'options'=>array(
'showAnim'=>'fold',
'showMonthAfterYear'=>'false',
),
'htmlOptions'=>array(
'style'=>'height:20px;',
), 'language'=>'zh_cn',
));
From: http://www.cnblogs.com/dahuzizyd/archive/2013/03/26/2983471.html
Yii框架常见问题汇总的更多相关文章
- J2EE进阶(十)SSH框架整合常见问题汇总(一)
SSH框架整合常见问题汇总(一) 前言 以下所列问题具有针对性,但是遇到同类型问题时均可按照此思路进行解决. HTTP Status 404 - No result defined for actio ...
- Nuxt.js的踩坑指南(常见问题汇总)
本文会不定期更新在nuxt.js中遇到的问题进行汇总.转发请注明出处,尊重作者,谢谢! 强烈推荐作者文档版踩坑指南,点击跳转踩坑指南 在Nuxt的官方文档中,中文文档和英文文档都存在着不小的差异. 1 ...
- 《PDF.NE数据框架常见问题及解决方案-初》
<PDF.NE数据框架常见问题及解决方案-初> 1.新增数据库后,获取标识列的值: 解决方案: PDF.NET数据框架,已经为我们考略了很多,因为用PDF.NET进行数据的添加操作时 ...
- yii框架安装心得
最近在学习yii框架, 现在将遇到的一些问题和解决方法写出来与大家分享. yii框架的安装: 下载yii框架之后, 打开文件运行init.bat文件, 如果闪退就打开php的扩展(php_openss ...
- Yii框架 400 错误
YII 400错误 在YII框架中400错误是csrf校验失败的意思 csrf是什么? CSRF(Cross-site request forgery跨站请求伪造,也被称为"One Cli ...
- Yii框架CURD方法
在YII框架中,CURD有2种方式: 1.AR模式:2. DAO模式 AR模式下 查全部 MODEL $model->find()->asArray()->all()查单 个 ...
- CentOS安装Oracle数据库详细介绍及常见问题汇总
一.安装前准备 1.软件硬件要求 操作系统:CentOS 6.4(32bit)Oracle数据库版本:Oracle 10g(10201_database_linux32.zip)最小内存:1G(检查命 ...
- SVN集中式版本控制器的安装、使用与常见问题汇总
SVN是Subversion的简称,是一个开放源代码的版本控制系统,它采用了分支管理系统,集中式版本控制器 官方网站:https://www.visualsvn.com/ 下载右边的服务器端,左边的客 ...
- Yaf(Yet Another Framework)用户手册 yii框架手册
地址:http://www.laruence.com/manual/ yaf框架手册:http://pan.baidu.com/s/1bnHFPHd yii框架手册:http://pan.baidu. ...
随机推荐
- Dom操作--跑马灯效果
这里给园友们演示的是Dom操作实现跑马灯效果,相信我们很多人都用Winform实现过跑马灯效果,其中的关键就是Tirm控件,那么在Dom操作中是用setInterval方法来实现隔一段时间执行一段代码 ...
- nginx服务器的日志太多:定期执行脚本删除
#!/bin/bash -type f -name *.log | xargs rm -f 脚本名字autodellog.sh 设置定时器(每天凌晨一点执行) [root@localhost ~]# ...
- js与uri中location关系
//获取域名host = window.location.host;host2=document.domain; //获取页面完整地址url = window.location.href; docum ...
- 采用python获得并修改文件编码(原创)
windows和linux采用了不同的编码,这让很多人伤透了脑经,这里我采用了Python的chardet库获得代码的编码,然后修改编码. 1.首先需要安装chardet库,有很多方式,我才用的是比较 ...
- Tasklist 命令的使用
1,根据PID查找进程 tasklist /fi "pid eq 2245" 2,根据名称查找进程 tasklist /fi "imagename eq notepad. ...
- Docker系列
Docker学习系列(五):Dockerfile文件 什么是Dockerfile? 它是一个名称为Dockerfile的文件 它是一个脚本文件,由一系列命令和参数构成 Dockerfile是自动构建d ...
- (九)groupByKey,reduceByKey,sortByKey算子-Java&Python版Spark
groupByKey,reduceByKey,sortByKey算子 视频教程: 1.优酷 2. YouTube 1.groupByKey groupByKey是对每个key进行合并操作,但只生成一个 ...
- Morgan stanley 电话面试
首先是聊项目, 不会涉及到具体的技术问题 1.C和C++的区别:C++里的RTTI 2.vector 和 list的区别 : casting operator ; smart pointer. 3.数 ...
- iOS中使用RegexKitLite来试用正则表达式 使用ARC 20个错误解决办法
You can also disable the ARC for the RegexKitLite only by adding a flag: select the project -> YO ...
- servlet 默认是线程安全的吗?
由于Servlet默认是以多线程模式执行的,所以,在编写代码时需要非常细致地考虑多线程的安全问题.然而,很多人编写Servlet程序时并没 有注意到多线程安全的问题,这往往造成编写的程序在少量用户访问 ...