简体   繁体   English

Slim Framework 4 getParsedBody 总是返回 null

[英]Slim Framework 4 getParsedBody Always returns null

I'm testing Slim Framework 4 and I can't seem to be able to retrieve any data when I'm submiting a JSON via POST, using the getParsedBody method, it always results in NULL.我正在测试 Slim Framework 4,当我使用 getParsedBody 方法通过 POST 提交 JSON 时,我似乎无法检索任何数据,它总是导致 NULL。 Here is my endpoint:这是我的端点:

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

$app->post('/prueba', function (Request $request, Response $response, $args) {
    $data = $request->getParsedBody();
    $response->getBody()->write(json_encode($data));
    return $response->withHeader('Content-Type', 'application/json')
        ->withStatus(200);
});

Following some docs I've added the BodyParsing Middleware:在一些文档之后,我添加了 BodyParsing 中间件:

<?php

use Dotenv\Dotenv;
use Slim\Views\Twig;
use Slim\Factory\AppFactory;
use Slim\Views\TwigExtension;
use Slim\Psr7\Factory\UriFactory;
use Dotenv\Exception\InvalidPathException;

require_once __DIR__ . '/../vendor/autoload.php';

try {
    (new Dotenv(__DIR__ . '/../'))->load();
} catch (InvalidPathException $e) {
    //
}

$container = new DI\Container();

AppFactory::setContainer($container);

$app = AppFactory::create();

$app->addBodyParsingMiddleware();

$app->addRoutingMiddleware();

$app->addErrorMiddleware(true, true, true);

$container->set('settings', function () {
    return [
        'app' => [
            'name' => getenv('APP_NAME')
        ],
        'db' => [
            'driver' => getenv('DB_DRIVER'),
            'host' => getenv('DB_HOST'),
            'database' => getenv('DB_NAME'),
            'username' => getenv('DB_USER'),
            'password' => getenv('DB_PASS'),
            'charset' => getenv('DB_CHARSET'),
            'collation' => getenv('DB_COLLATION'),
            'prefix' => ''
        ]
    ];
});

$capsule = new \Illuminate\Database\Capsule\Manager();
$capsule->addConnection($container->get('settings')['db']);
$capsule->setAsGlobal();
$capsule->bootEloquent();

$container->set('view', function ($container) use ($app) {
    $twig = new Twig(__DIR__ . '/../resources/views', [
        'cache' => false
    ]);

    $twig->addExtension(
        new TwigExtension(
            $app->getRouteCollector()->getRouteParser(),
            (new UriFactory)->createFromGlobals($_SERVER),
            '/'
        )
    );

    return $twig;
});

require_once __DIR__ . '/../routes/api.php';

This is the request I'm sending:这是我发送的请求:

curl --location --request POST 'http://localhost:80/prueba' \
--header 'Content-type: application/json' \
--data-raw '{"name": "Rob", "country": "UK"}'

I've debuged a little and verified that the middleware is processing the request but up until now I can't get it to return anything else than null.我进行了一些调试并验证了中间件正在处理请求,但到目前为止,我无法让它返回 null 以外的任何内容。 Also looked over and there doesn't seem to be any reported issue with a definitive solutions.还看了看,似乎没有任何报告的问题有明确的解决方案。

Nevermind, It was a problem caused by a deficient skeleton, using the oficial skeleton from slim everything was solved没关系,这是骨骼不足引起的问题,使用slim的官方骨骼一切都解决了

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM