本篇內(nèi)容主要講解“yii2怎么根據(jù)條件設(shè)定指定值”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“yii2怎么根據(jù)條件設(shè)定指定值”吧!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、虛擬空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、上思網(wǎng)站維護(hù)、網(wǎng)站推廣。
gii自動(dòng)生成的_form.php文件中,我們可以根據(jù)代碼$model->isNewRecord 返回的值,來(lái)判斷當(dāng)前是增加還是更新,在form.php文件中,還可以根據(jù)它的屬性值給字段input框賦予默認(rèn)值
connect字段為多選框字段,前臺(tái)傳到后臺(tái)的數(shù)據(jù)默認(rèn)是數(shù)組格式。該字段對(duì)應(yīng)是讓tostring方法處理,先把它的值賦給靜態(tài)變量$connect,然后在beforeSave中把數(shù)組格式化成字符串,在返回,存入數(shù)據(jù)庫(kù)。
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(){//可通過(guò)方法單獨(dú)控制某個(gè)字段,也可以直接通過(guò)beforesave方法控制
//if($this->isNewRecord){//判斷是更新還是插入
//$this->connect = implode(',', $this->connect);
//}else{
// $this->connect = implode(',', $this->connect);
//}
}
到此,相信大家對(duì)“yii2怎么根據(jù)條件設(shè)定指定值”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!