溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP中如何使用Yii框架

發(fā)布時間:2021-06-23 16:41:59 來源:億速云 閱讀:136 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)PHP中如何使用Yii框架,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

首先,這是修改后的部分 Mysql 語句:

drop table if exists `tbl_user`; 
CREATE TABLE tbl_user 
( 
  `user_id` INTEGER NOT NULL AUTO_INCREMENT comment '主鍵', 
  `username` VARCHAR(128) NOT NULL comment '用戶名', 
  `nickname` VARCHAR(128) NOT NULL comment '昵稱', 
  `password` VARCHAR(128) NOT NULL comment '密碼', 
  `email` VARCHAR(128) NOT NULL comment '郵箱', 
  `is_delete` tinyint not null default 0 comment '刪除標(biāo)志', 
  unique key(`username`), 
  primary key (`user_id`) 
) ENGINE=InnoDB DEFAULT CHARSET=utf8 comment='用戶表'; 
 
drop table if exists `tbl_post`; 
CREATE TABLE tbl_post 
( 
  `post_id` INTEGER NOT NULL AUTO_INCREMENT comment '主鍵', 
  `title` VARCHAR(128) NOT NULL comment '標(biāo)題', 
  `content` TEXT NOT NULL comment '文章內(nèi)容', 
  `tags` TEXT comment '標(biāo)簽', 
  `status` INTEGER NOT NULL comment '狀態(tài),0 = 草稿,1 = 審核通過,-1 = 審核不通過,2 = 發(fā)布', 
  `create_time` INTEGER comment '創(chuàng)建時間', 
  `update_time` INTEGER comment '更新時間', 
  `author_id` INTEGER NOT NULL comment '作者', 
  `is_delete` tinyint not null default 0 comment '刪除標(biāo)志', 
  CONSTRAINT `post_ibfk_1` FOREIGN KEY (author_id) 
    REFERENCES tbl_user (`user_id`) ON DELETE CASCADE ON UPDATE RESTRICT, 
  primary key (`post_id`) 
) ENGINE=InnoDB DEFAULT CHARSET=utf8 comment='日志表';

    兩個表一個存儲作者信息一個存儲日志,其中日志有一個外鍵關(guān)聯(lián)到 user。兩個表里面的 is_delete 字段是標(biāo)志該條記錄是否被刪除,0 為未刪除,1 為已刪除。讓我們看一下用 gii 生成的 Post 類的 relation 方法:

/** 
 * @return array relational rules. 
 */ 
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( 
    'comments' => array(self::HAS_MANY, 'Comment', 'post_id'), 
    'author' => array(self::BELONGS_TO, 'User', 'author_id'), 
  ); 
}

    其中的 author 外鍵作為 BELONGS_TO 關(guān)系存在,符合我們的預(yù)期。
    說了這么多,看看自動生成的 Post 中 admin.php 里 CGridView 的代碼吧:

<?php $this->widget('zii.widgets.grid.CGridView', array( 
  'id'=>'post-grid', 
  'dataProvider'=>$model->search(), 
  'filter'=>$model, 
  'columns'=>array( 
    'post_id', 
    'title', 
    'content', 
    'tags', 
    'status', 
    'create_time', 
    'update_time', 
    'author_id', 
    'is_delete', 
    array( 
      'class'=>'CButtonColumn', 
    ), 
  ), 
)); ?>

    看!雖然我們什么都沒寫,但這就是這個控件的最基礎(chǔ)使用了。dataProvider 是由 model 里面的 search 函數(shù)提供的數(shù)據(jù),filter...暫時看不出這里的作用,columns 控制展示的每一列,其中最后一項的 CButtonColumn 向我們展示了三個按鈕,分別是 查看  更新 和 刪除。
    接下來我們一點(diǎn)點(diǎn)地改造.

用 CGridView 展示我們真正要的數(shù)據(jù)形式:
    很多時候,數(shù)據(jù)庫里的東西不適合直接展示給用戶看,需要我們進(jìn)行一定的處理之后才適合閱讀。但在這里不經(jīng)修改的話 CGridView 只會把數(shù)據(jù)庫的值原封不動地呈現(xiàn),所以,我們應(yīng)該在相應(yīng)的字段進(jìn)行修改。比如 is_delete 字段,數(shù)據(jù)庫里存放的是 0 和 1,但是在這里閱讀就不太好了,我們應(yīng)該改成 1 展示 '是' ,0展示 '否'??纯聪旅娴拇a,我們用了一個 array,兩個鍵分別是 name 和 value,name 對應(yīng)的要填寫該 model 擁有的字段,而 value 是你想展示的數(shù)據(jù),這里可以寫成一個 php 語句,作為可以執(zhí)行的代碼??吹竭@里,是不是覺得對這個 value 我們可以做很多東西?有的同學(xué)可能要問,如果我想執(zhí)行的代碼很長,難道都寫在 value 里面?。。。我說同學(xué),你不會在其他地方寫成一個函數(shù)然后在這里調(diào)用它嗎??

<?php $this->widget('zii.widgets.grid.CGridView', array( 
  'id'=>'post-grid', 
  'dataProvider'=>$model->search(), 
  'filter'=>$model, 
  'columns'=>array( 
    'post_id', 
    'title', 
    'content', 
    'tags', 
    'status', 
    'create_time', 
    'update_time', 
    'author_id', 
    'is_delete', 
    array( 
      'name'=>'is_delete', 
      'value'=>'is_delete?"是":"否"' //value 是可以執(zhí)行 php 語句的哦 
    ) 
    array( 
      'class'=>'CButtonColumn', 
    ), 
  ), 
)); ?>

     除此之外,還有一些常用的選項,都可以在 array 里面填寫,下面是比較常見的使用方式(其他部分代碼省略):

array( 
  'name'=>'is_delete', 
  'value'=>'is_delete?"是":"否"' //value 是可以執(zhí)行 php 語句的哦 
  'filter' => array(0=>'否',1=>'是'), //自己定義搜索過濾的方式,這里為 是 和 否 的下拉菜單 
  'htmlOptions'=>array('class'=>'delete'), //可以定義 html 選項,這里是定義了帶一個 delete 的類 
),

     上面我們用 name 的話那是 model 里原來就有的字段,如果我們想展示自己定義的新內(nèi)容呢,用 header :

array( 
  'header'=>'備注', 
  'value'=> 'display your data' 
),

添加 CCheckBoxColumn :
    有時也許我們會需要一個復(fù)選框,來對每一行進(jìn)行選擇,這時,我們可以增加一列,用 CCheckBoxColumn 類:

<?php $this->widget('zii.widgets.grid.CGridView', array( 
  'id'=>'post-grid', 
  'dataProvider'=>$model->search(), 
  'filter'=>$model, 
  'columns'=>array( 
    array( 
      'selectableRows' => 2, //允許多選,改為 0 時代表不允許修改,1 的話為單選 
      'class' => 'CCheckBoxColumn',//復(fù)選框 
      'headerHtmlOptions' => array('width'=>'18px'),//頭部的 html 選項 
      'checkBoxHtmlOptions' => array('name' => 'myname','class'=>'myclass'), //復(fù)選框的 html 選項 
    ), 
    'post_id', 
    'title', 
    'content', 
    'tags', 
    'status', 
    'create_time', 
    'update_time', 
    'author_id', 
    'is_delete', 
    array( 
      'name'=>'is_delete', 
      'value'=>'is_delete?"是":"否"', //value 是可以執(zhí)行 php 語句的哦 
      'filter' => array(0=>'否',1=>'是'), //自己定義搜索過濾的方式,這里為 是 和 否 的下拉菜單 
      'htmlOptions'=>array('class'=>'delete'), //可以定義 html 選項,這里是定義了帶一個 delete 的類 
    ), 
    array( 
      'class'=>'CButtonColumn', 
    ), 
  ), 
));

修改ButtonColumn:
   注意到列表每一項的最后三個小圖標(biāo)嗎?不需要的話當(dāng)然是直接刪了,那要是只要其中某幾個呢?可以加一個 template 參數(shù):

array( 
     'class'=>'ButtonColumn', 
     'template'=>"{view} {update}", 
   ),

    也可以自定義按鈕:

array( 
  'class'=>'ButtonColumn', 
  'template'=>"{view} {update} {print}", 
  'buttons'=>array( 
      'print'=>array( 
          'label'=>'打印', 
          'url'=>'Yii::app()->controller->createUrl("print", array("id"=>$data->post_id))', 
          'options'=>array("target"=>"_blank"), 
        ), 
      ), 
    ),

刷新時觸發(fā) Javascript:
     如果你想在每次搜索之后觸發(fā)一些 Javascript ,Yii 也提供了這個選項,你只要寫成一個函數(shù)然后設(shè)置 afterAjaxUpdate 就好,記住這只是在 ajax 請求完成之后調(diào)用的,如果你想在 頁面 一開始加載完成就調(diào)用的話需要另外加到頁面的  Javascript

  $js = <<<_JS_ 
function(){ 
  alert('The ajax finish'); 
 
} 
_JS_; 
 
$this->widget('zii.widgets.grid.CGridView', array( 
  'id'=>'post-grid', 
  'dataProvider'=>$model->search(), 
  'filter'=>$model, 
  'afterAjaxUpdate'=>$js, //看這里,ajax 之后調(diào)用的 javascript 在這里.... 
  'columns'=>array( 
    array( 
      'selectableRows' => 2, //允許多選,改為 0 時代表不允許修改,1 的話為單選 
      'class' => 'CCheckBoxColumn',//復(fù)選框 
      'headerHtmlOptions' => array('width'=>'18px'), 
      'checkBoxHtmlOptions' => array('name' => 'myname','class'=>'myclass'), 
    ), 
    ....

 添加 關(guān)聯(lián)表 相關(guān)字段的搜索:
     先說一句,我們在這里只談 ”一對多“ 的關(guān)聯(lián)搜索,首先,不要忘了我們的數(shù)據(jù)庫,忘記的同學(xué)請戳這里:這里,可以看到在 tbl_post 中是有一個外鍵關(guān)聯(lián)到 tbl_user 表的,用以查找作者的相關(guān)信息。建了數(shù)據(jù)庫之后,看看我們生成的 Yii 代碼的 POST 的 Model, 里面的 realtion 如下(忽略 comment 的):

/** 
 * @return array relational rules. 
 */ 
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( 
    'comments' => array(self::HAS_MANY, 'Comment', 'post_id'), 
    'author' => array(self::BELONGS_TO, 'User', 'author_id'), 
  ); 
}

    可以看到 POST 和 USER 表可以通過 author 鍵進(jìn)行訪問,例如: $model->author->nickname,而且 這里是 BELONGS_TO 關(guān)系。
    說了這么多,我們的需求究竟是什么?....

     產(chǎn)品經(jīng)理推了推眼鏡:”我們要在日志的后臺管理界面加一個功能,可以通過作者名稱搜索到相應(yīng)的文章。這個比較急,今晚就要完成。“

    淡定淡定,不就是改需求嗎。忽略進(jìn)度要求,我們研究一下究竟要做什么。
    其實很簡單的,不就是在 POST 的 admin 界面中增加一列作者名稱,然后可以通過作者名的 模糊搜索 去找到對應(yīng)日志嗎?看看代碼,要是通過 作者 id 去搜索不就簡單了嗎?不過這樣確實不太友好...如果是展示作者名字而已不也是很簡單嗎?加一個 header 然后 value 是 $data->author->username, 問題是這樣只能展示,不能進(jìn)行搜索...哎,好苦惱。
    淡定淡定,不就是多個搜索嗎?來,讓我告訴你怎么做。

    首先,我們進(jìn)入 POST 的 model,在一開始的地方添加一個屬性:

class Post extends CActiveRecord 
{ 
  public $name; //添加一個 public 屬性,代表作者名 
  然后改一下 Model 里面 search 的代碼,改動部分都已經(jīng)加了注釋:

public function search() 
{ 
  // @todo Please modify the following code to remove attributes that should not be searched. 
 
  $criteria=new CDbCriteria; 
 
  $criteria->with = array('author'); //添加了和 author 的渴求式加載 
 
  $criteria->compare('post_id',$this->post_id); 
  $criteria->compare('title',$this->title,true); 
  $criteria->compare('content',$this->content,true); 
  $criteria->compare('tags',$this->tags,true); 
  $criteria->compare('status',$this->status); 
  $criteria->compare('create_time',$this->create_time); 
  $criteria->compare('update_time',$this->update_time); 
  $criteria->compare('author_id',$this->author_id); 
 
  //這里添加了一個 compare, username 是 User 表的字段,$this->name 是我們添加的屬性,true 為模糊搜索 
  $criteria->compare('username',$this->name,true); 
 
  return new CActiveDataProvider($this, array( 
    'criteria'=>$criteria, 
  )); 
}


    然后在 view 里面,就是 post 文件夾的 admin.php ,CGridView 改為下面代碼:

<?php $this->widget('zii.widgets.grid.CGridView', array( 
  'id'=>'post-grid', 
  'dataProvider'=>$model->search(), 
  'filter'=>$model, 
  'columns'=>array( 
    'post_id', 
    'title', 
    'content', 
    'tags', 
    'status', 
    'create_time', 
    'update_time', 
    'author_id', 
    /*下面就是添加的代碼啊*/ 
    array( 
      'name'=>'作者名稱', 
      'value'=>'$data->author->username', //定義展示的 value 值 
      'filter'=>CHtml::activeTextField($model,'name'), //添加搜索 filter 
    ), 
    array( 
      'class'=>'CButtonColumn', 
    ), 
  ), 
)); ?>

    你是不是發(fā)現(xiàn)現(xiàn)在有了搜索框但是不起作用呢?哈哈,所以我們說文章要堅持看到最后。我們要做的最后一步,就是在 rule 里面,把 name 屬性加入到安全搜索字段中,要不然會被 Yii 認(rèn)為是不安全字段而過濾掉的。看,就在下面函數(shù)的最后一行,safe 前面多了個 name ....

public function rules() 
{ 
  // NOTE: you should only define rules for those attributes that 
  // will receive user inputs. 
  return array( 
    array('title, content, status, author_id', 'required'), 
    array('status, create_time, update_time, author_id', 'numerical', 'integerOnly'=>true), 
    array('title', 'length', 'max'=>128), 
    array('tags', 'safe'), 
    // The following rule is used by search(). 
    // @todo Please remove those attributes that should not be searched. 
    array('post_id, title, content, tags, status, create_time, update_time, author_id, name', 'safe', 'on'=>'search'), 
  ); 
}

上述就是小編為大家分享的PHP中如何使用Yii框架了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI