页面未找到(超薄框架)

时间:2017-02-24 09:59:23

标签: php slim

<?php
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;

require '../vendor/autoload.php';
require '../src/config/db_standings.php';

$app = new \Slim\App;

require '../src/routes/ppg.php';

require '../src/routes/standings.php';

$app->run();

所以这是我的index.php文件,我不明白为什么它只是加载最后需要的路径。在这种情况下只有standings.php。无论我最后添加什么路线,它只会加载最后一条路线,而找不到其他页面。我做错了什么?

standings.php

<?php

Header('Content-Type: application/json; charset=UTF-8');

use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;

$app = new \Slim\App;

$app->get('/api/standings', function(Request $request, Response $response){
    $sql = "SELECT * FROM standings";

    try {
        $db = new db_standings();
        $db = $db->connect();

        $stmt = $db->query($sql);
        $standings = $stmt->fetchAll(PDO::FETCH_OBJ);
        $db = null;

        $json = json_encode($standings, JSON_UNESCAPED_UNICODE);

        echo($json);

    } catch(PDOException $e) {
        echo '{"error": {"text": '.$e->getMessage().'}';
    }
});

ppg.php

<?php

Header('Content-Type: application/json; charset=UTF-8');

use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;

$app = new \Slim\App;

$app->get('/api/ppg', function(Request $request, Response $response){
    echo 'BANANAS';
});

2 个答案:

答案 0 :(得分:5)

index.php中,您正在创建Slim应用程序实例并将其放在$app变量中:

<?php

$app = new \Slim\App; # This is new Slim app contained in $app variable

// executing code of standings.php...
// executing code of ppg.php...

$app->run(); # Here you run the application that is contained in $app variable.

但是你在每个包含的文件中做同样的事情:standings.phpppg.php

因此,当您包含standings.php时,您将覆盖$app变量的内容,添加在文件中声明的路由。

然后包括覆盖ppg.php实例的$app(以及因此已声明的路由)并附加其路由。

当执行流程返回index.php时,它会运行$app->run()并且$app碰巧是在最后一个文件中创建的那个。

因此,要解决此问题,只需删除此行

即可
$app = new \Slim\App;

来自index.php的所有文件。

<强>更新

你写的评论

  

删除不必要的和更改的JSON输出方法后,我得到了   “超薄应用程序错误 - 对暂时的不便感到抱歉”

好吧,原因是因为你做错了,请原谅我过于苛刻。

实质上,Slim应用程序是一组附加到特定路由的回调。

通常每个回调都接受两个参数:请求和响应对象,每个migh(或可能不是出于某种原因)将请求和响应更改为您想要的任何内容。所有回调都是在链中一个接一个地调用。

规则很简单:任何回调都应该在最后返回响应对象。并且该响应可能是任何内容:html文档,json数据,文件 - 无论HTTP响应中是否都可以返回。

因此,在你的Slim应用程序中,如果你喜欢

header('Content-Type: application/json; charset=UTF-8');

echo $jsonString;
那时你做错了。您应该构建具有该标头并包含您的数据的响应对象,而不是设置响应标头并直接输出JSON。 Slim非常出色,看一下(为了更好的抽象,我简化了你的代码):

<?php

use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;

$app = new \Slim\App;

// Append callback to a route: note request response arugments.
$app->get('/api/standings', function(Request $request, Response $response) {

    $standingsRepository = new \StandingsRepository;

    $standings = $standingsRepository->getAll();

    if ($standings) {
    // Return response object
        return $response->withJson($standings);
    } else {
        // Or pass to another callback: note request and response
    return new \Slim\Exception\NotFoundException($request, $response);
    }

});

这里我们使用了withJson对象的Response方法。这会将application/json标头设置为您的响应,并将您传递的任何内容放入正文中作为参数。在我们的例子中,它是$ standings变量的值(我假设它是一个对象数组)。

我希望我能为你做一些事情。我强烈建议您阅读framework documentation,它将带您一个晚上和两杯咖啡,为您节省很多时间。

答案 1 :(得分:0)

正如@Georgy Ivanov在下面的回答中所建议你必须从standings.php和ppg.php中删除以下块:

Header('Content-Type: application/json; charset=UTF-8');

use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;

$app = new \Slim\App;

此外,由于您的目的是输出JSON响应,您只需使用Slim&withJson()方法即可:

return $response->withJson($standings);

请参阅此https://www.slimframework.com/docs/objects/response.html#returning-json