配置api 为什么就访问不通呢 求各位指点? [ 2.0 版本 ]
mian.php
目录结构
UserController
ApiController
postMan 结果
最佳答案
其他 10 个回答
-
请问你 在配置文件中 加了模块了吗 ? user模块
https://www.yiichina.com/doc/guide/2.0/structure-modules -
<?php 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'enableStrictParsing' => true, 'rules' => [ 'class' => 'yii\rest\UrlRule', 'controller' => ['user/user'], ], ],
实际路由地址是/user/users/test
修改为<?php 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'enableStrictParsing' => true, 'rules' => [ 'class' => 'yii\rest\UrlRule', 'controller' => ['user/user'], 'pluralize' => false, ], ],
即可路由地址修改为是/user/user/test
mouthliu
注册时间:2018-09-07
最后登录:2019-04-13
在线时长:5小时22分
最后登录:2019-04-13
在线时长:5小时22分
- 粉丝0
- 金钱25
- 威望0
- 积分75