看講師多此一舉封裝,忍不住多說一句。。
Yii::$app->response->format=Response::FORMAT_JSON;
然后直接在控制器里return,響應(yīng)組件自動會轉(zhuǎn)換為json格式。
Yii::$app->response->format=Response::FORMAT_JSON;
然后直接在控制器里return,響應(yīng)組件自動會轉(zhuǎn)換為json格式。
yii2自帶url組件,用于鏈接的各種跳轉(zhuǎn):url::to 就可以實現(xiàn)講師所封裝的功能。建議在學習的時候多看看yii文檔,避免自作聰明。
varchar 最大長度可以看這里,最大65535,跟編碼有關(guān)
http://www.jb51.net/article/31589.htm
http://www.jb51.net/article/31589.htm
2017-11-29
顯示 The requested URL /rabc/web/gii/model was not found on this server.
在web下創(chuàng)建一個.htaccess
添加內(nèi)容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
在web下創(chuàng)建一個.htaccess
添加內(nèi)容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
2017-11-03