yii選擇布局的方法:
1. 通過控制器成員變數設定:
public $layout = false;//不使用布局
public $layout = 『main』;//設定使用的布局檔案(
)2. 通過控制器方法設定:
$this->layout = false;
$this->layout = 『main』;
3. 在視**件中設定:
$this->context->layout = false;
$this->context->layout = 『main』;
使用優先順序:
方法3 > 方法
2 > 方法1
檢視屬性標籤設定方法:
1. 預設情況下,屬性標籤通過
yii\base\model::generateattributelabel()
方法自動從屬性名生成。它會自動將駝峰式大小
寫變數名轉換為多個首字母大寫的單詞, 例如
username
轉換為username
,firstname
轉換為first name
。2. 在對應模型類檔案中使用
attributelabels()
方法設定:
use yii\db\activerecord;
class user extends activerecord
}3. 在視**件中使用
label()
方法設定:
<?= $form->field($model, 'username')->label('使用者名稱
') ?>
<?= $form->field($model, 'password')->label('密碼
') ?>
<?= $form->field($model, 'email')->label('郵箱
') ?>
展示優先順序:
方法3 > 方法
2 > 方法1
Yii2 選擇布局的方式
方案1 控制器內成員變數 public layout false 不使用布局 public layout main 設定使用的布局檔案 方案2 控制器成員方法內 this layout false 不使用布局 this layout main 設定使用的布局檔案 方案3 檢視中選擇布局 this c...
Yii2設定時區
時區這東西,在開發的時候,你說重要吧,也還好,畢竟沒它也能正常執行,你說不重要吧,那就糾結了。特別是linux系統,都 差上幾小時,你能不痛苦嗎?win還好一點。有一些常規方法,是大家目前都在採用的 1 php.ini中的設定,這個就不談了,2 程式中公用檔案裡設定,date default tim...
yii2 設定定時任務
通過console呼叫 在 console controllers 建立 controller 控制器繼承 yii console controller 例 user zj date 2021 1 8 time 15 26 namespace console controllers use comm...