gpt4 book ai didi

php - 在 Gii 上添加 where close 生成的 CRUD

转载 作者:行者123 更新时间:2023-11-29 00:36:40 25 4
gpt4 key购买 nike

我是 Yii 的初学者,我使用 GII 创建了一个 CURD 表。一切正常,但我只想通过放置一个 where 子句(例如“客户性别为男性”)从数据库中获取某些记录。我无法在 Gii 生成的代码中找到从数据库中获取数据的位置以及我需要的位置在代码中插入 WHERE 子句。

如您所知,Gii 生成模型、 Controller 和 View 文件。模型文件如下。我的 View 使用 CGridView 生成 CRUD 表。

    public static function model($className = __CLASS__) {
return parent::model($className);
}

/**
* @return string the associated database table name
*/
public function tableName() {
return 'test_prefixtbl_client_local';
}

/**
* @return array validation rules for model attributes.
*/
public function rules() {
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('client_id', 'required'),
array('client_id', 'length', 'max' => 15),
array('surname, forename', 'length', 'max' => 20),
array('title', 'length', 'max' => 6),
array('status', 'length', 'max' => 8),
array('dob', 'safe'),
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array('client_id, surname, forename, title, status, dob', 'safe', 'on' => 'search'),
);
}

/**
* @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(
);
}

/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels() {
return array(
'client_id' => 'Client ID',
'surname' => 'Surname',
'forename' => 'Forename',
'title' => 'Title',
'status' => 'Status',
'dob' => 'Date of birth (yyyy-mm-dd)',
'actions' => 'Actions',
);
}

/**
* Retrieves a list of models based on the current search/filter conditions.
* @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions.
*/
public function search() {
// Warning: Please modify the following code to remove attributes that
// should not be searched.

$criteria = new CDbCriteria;

$criteria->compare('client_id', $this->client_id, true);
$criteria->compare('surname', $this->surname, true);
$criteria->compare('forename', $this->forename, true);
$criteria->compare('title', $this->title, true);
$criteria->compare('status', $this->status, true);
$criteria->compare('dob', $this->dob, true);

return new CActiveDataProvider($this, array(
'criteria' => $criteria,
'sort' => array(
'defaultOrder' => 'dob DESC',
),
));
}

最佳答案

您有两种查询方式,一种是使用查询生成器 (tutorial here),如下所示:

$clientLocalArray = Yii::app()->db->createCommand()
->select()
->from("test_prefixtbl_client_local")
->where("gender = :gender", array(":gender"=>$gender))
->queryAll();

或者您可以像这样使用 Active Record 本身 (tutorial here):

$clientLocalArrayObjects = ClientLocal::model()->findAllByAttributes(array(
"gender" => $gender
));

有任何疑问,尽管问! :)

关于php - 在 Gii 上添加 where close 生成的 CRUD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13970527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com