return $this->rendercontent('about');//渲染乙個靜態字串使用在布局中
return $this->render('about');//渲染乙個檢視並且使用乙個布局,返回得到的渲染結果
這兩個渲染的聯絡如下
public function render($view, $params = )
renderpartial 渲染乙個檢視,並且不使用布局
renderajax 渲染乙個
檢視名並且不使用布局, 並注入所有註冊的js/css指令碼和檔案,通常使用在響應ajax網頁請求的情況下。
注入變數
return $this->render('contact', [
'model' => $model,
]);
YII2 學習筆記
2 yii 所有一切都是 components 3 service locator和di 是yii 的核心 4 配置檔案中的 commponts 配置項為類的屬性鍵值對,特殊配置項 on as 開頭的,on 開頭為事件,as 開頭是定義類的行為。behaive 5 yii 有一些預設的 compon...
YII2學習筆記 20150724 1
一 設定yii專案金鑰 檔案在於yii config web.php config id basic basepath dirname dir bootstrap log components request cookievalidationkey 使用者所填金鑰 二 gii快速生成 1.配置gii...
YII2 學習筆記 RBAC
1 配置使用者 model 實現介面 yii web identityinte ce 2 配置檔案 components authmanager class yii rbac dbmanager user 指定使用者模組的驗證類 identityclass api models members 這裡...