doubo1883 2017-04-17 10:15
浏览 63
已采纳

Slim Framework:将HTTP请求路由到静态类方法

I just started using Slim Framework to create my rest API. Everything works well until I try to route HTTP request to a static class method (I used the anonymous function before). Below is my new route code on index.php:

include "vendor/autoload.php";
$config = ['settings' => [
               'addContentLengthHeader' => false,
               'displayErrorDetails'    => true,
               'determineRouteBeforeAppMiddleware' => true
            ]
          ];

$app = new \Slim\App($config);
$app->get('/user/test', '\App\Controllers\UserController:test');
$app->run();

And below is my UserController class on UserController.php

class UserController{
    public function test($request, $response, $args){
        $array = ['message'=>'your route works well'];
        return $response->withStatus(STAT_SUCCESS)
                        ->withJson($array);
    }
}

Error details:

Type   : RuntimeException
Message: Callable \Controllers\UserController does not exist
File   : /var/www/html/project_api/vendor/slim/slim/Slim/CallableResolver.php

Below is my project folder tree

project_api/
           index.php
           vendor/
                 slim/slim/Slim/CallableResolver.php

           Controllers/
                      UserController.php

my composer.json

{
    "require": {
        "slim/slim": "^3.8",
        "sergeytsalkov/meekrodb": "*",
        "slim/http-cache": "^0.3.0"
    }
},
"autoload": {
    "psr-4": {
        "Controllers\\": "Controllers/"
    }
}
  • 写回答

1条回答 默认 最新

  • duanaiguang1960 2017-04-18 03:20
    关注

    It seems that your namespace is define improperly. In your composer.json, class UserController under the namespace Controllers.

    you should define a namespace at the top of your UserController.php:

    namespace Controllers;
    

    and change $app->get() in your index.php to:

    $app->get('/user/test', 'Controllers\UserController:test');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器