您好,登錄后才能下訂單哦!
本篇內容主要講解“yii2怎么根據條件設定指定值”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“yii2怎么根據條件設定指定值”吧!
gii自動生成的_form.php文件中,我們可以根據代碼$model->isNewRecord 返回的值,來判斷當前是增加還是更新,在form.php文件中,還可以根據它的屬性值給字段input框賦予默認值
connect字段為多選框字段,前臺傳到后臺的數據默認是數組格式。該字段對應是讓tostring方法處理,先把它的值賦給靜態變量$connect,然后在beforeSave中把數組格式化成字符串,在返回,存入數據庫。
<?php
namespace backend\models;
use Yii;
use \yii\db\ActiveRecord;
class Newdocument extends ActiveRecord
{
public function beforeSave($insert){
if(parent::beforeSave($insert)){
if($this->isNewRecord){//判斷是更新還是插入
$this->connect = implode(',', $this->connect);
$this->create_time = time();
}else{
$this->update_time = time();
$this->connect = implode(',', $this->connect);
}
return true;
}else{
return false;
}
}
/**
* @inheritdoc
*/
public static function tableName()
{
return 'document';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[[ 'create_time','update_time'], 'integer'],
['connect','tostring'],
];
}
public function tostring(){//可通過方法單獨控制某個字段,也可以直接通過beforesave方法控制
//if($this->isNewRecord){//判斷是更新還是插入
//$this->connect = implode(',', $this->connect);
//}else{
// $this->connect = implode(',', $this->connect);
//}
}
到此,相信大家對“yii2怎么根據條件設定指定值”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。