看讲师多此一举封装,忍不住多说一句。。
Yii::$app->response->format=Response::FORMAT_JSON;
然后直接在控制器里return,响应组件自动会转换为json格式。
Yii::$app->response->format=Response::FORMAT_JSON;
然后直接在控制器里return,响应组件自动会转换为json格式。
yii2自带url组件,用于链接的各种跳转:url::to 就可以实现讲师所封装的功能。建议在学习的时候多看看yii文档,避免自作聪明。
显示 The requested URL /rabc/web/gii/model was not found on this server.
在web下创建一个.htaccess
添加内容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
在web下创建一个.htaccess
添加内容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
2017-11-03