yii-behaviour

    0熱度

    1回答

    我的模型類這樣 /** * @property integer $is_active */ class User extends CActiveRecord { .... } $User = User::model()->findByPk(1); 在MySQL is_active總是返回1或0,我想每當我打電話$User->is_active。 它將輸出boolean不integ

    1熱度

    1回答

    我有一個模型,它具有某種行爲。 class X { .... public function behaviours() { return array ( 'YBehaviour' => array ( 'class' => 'application.path.to.class.y', ); } .... } 事情是

    2熱度

    1回答

    我剛開始使用引導主題的Yii框架;一切都很棒, 除了我找不到在引導窗口小部件中命名屬性的方法。例如,網站有一個聊天按鈕,我如何通過jQuery('#id')訪問它? 我嘗試添加在同一陣列的id屬性如下: <?php $this->widget('bootstrap.widgets.TbButton',array( 'buttonType'=>'link', 'icon' => '

    2熱度

    1回答

    我想在某些情況下,Yii Behavior中的beforeSave會中斷保存並返回錯誤。我已經試過了,沒有工作是: public function beforeSave($event) { parent::beforeSave($event); $tested_value = null; if(is_null($tested_value)){ $thi