简体   繁体   English

Slim Framework 自定义中间件中的错误处理

[英]Error Handling in Slim Framework Custom Middleware

I am trying to handle errors in slim framework custom middle ware but dont know how to do this like in my code i am doing that if the request is not of four specific types then through an error that i want to handel in errorHandler with appropriate message and status but currently this code is just returning the status in postman with a blank screen in response body.我正在尝试处理超薄框架自定义中间件中的错误,但不知道如何在我的代码中执行此操作,如果请求不是四种特定类型,则通过我想在 errorHandler 中使用适当消息处理的错误执行此操作和状态,但目前此代码只是在邮递员中返回状态,响应正文中为空白屏幕。 I am not very much familiar with SLIM.我对 SLIM 不是很熟悉。 Thanks in advance提前致谢

<?php 

require 'vendor/autoload.php';

use \Slim\App;

$c = new \Slim\Container();

$c['notAllowedHandler'] = function ($c) { 
    return function ($request, $response, $methods) use ($c) {
        return $c['response']
            ->withStatus(405)
            ->withHeader('Allow', implode(', ', $methods))
            ->withHeader('Content-type', 'application/json')
        ->write(json_encode(array("c_status"=>"405","message"=>"Bad Request")));
    };
};

$c['notFoundHandler'] = function ($c) {
    return function ($request, $response) use ($c) {
        return $c['response']
            ->withStatus(404)
            ->withHeader('Content-type', 'application/json')
        ->write(json_encode(array("c_status"=>"404","message"=>"Not Found")));
    };
};


$c['errorHandler'] = function ($c) {
    return function ($request, $response, $exception) use ($c) {
        $data = [
            'c_status' => $response->getStatus(),
            'message' => $exception->getMessage()
        ];
        return $container->get('response')->withStatus($response->getStatus())
            ->withHeader('Content-Type', 'application/json')
            ->write(json_encode($data));
    };
};

$app = new App($c);

$app->add(function ($request, $response, $next) {
    if($request->isGet() || $request->isPost() || $request->isPut() || $request->isDelete()){
        $response = $next($request, $response);
    }else{
        $response = $response->withStatus(403);
    }
    return $response;
});

require 'API/routes.php';
$app->run();

Throw an exception:抛出异常:

$app->add(function ($request, $response, $next) {
    if($request->isGet() || $request->isPost() || $request->isPut() || $request->isDelete()){
        $response = $next($request, $response);
    }else{
        throw new \Exception("Forbidden", 403);
    }
    return $response;
})

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

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