The Last Day Of Summer

.NET技术 C# ASP.net ActiveReport SICP 代码生成 报表应用 RDLC
随笔 - 319, 文章 - 3, 评论 - 2095, 阅读 - 119万
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

Yii框架常见问题汇总

Posted on   Cure  阅读(784)  评论(0编辑  收藏  举报

虽然用过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',
    ));
复制代码

 

 9.在使用ajaxButton时如何在controller中调用var_dump等来调试:

复制代码
<?php echo CHtml::ajaxButton('保存', array('reviewd/create'),
array(//'success'=>'js:function(data){alert(123);}',        
'data'=>array('name'=>'...',
'department_id'=>'...'),
'type'=>'POST',
'update'=>'#review-d-form',
//'return'=>true,
)
,array('class'=>'btn btn-success btn-normal')
)?>
复制代码

注释掉红色的部分。

编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
历史上的今天:
2008-03-26 Ruby on rails开发从头来(四十三)- ActiveRecord基础(连接数据库)
2007-03-26 使用C#和Excel进行报表开发(七)-设置单元格的显示格式
点击右上角即可分享
微信分享提示