doutao5499 2016-09-12 19:20
浏览 22

只有一个功能的每页的Slim 3 post

I'm attempting to add a logout to each one of my pages when a POST request is sent. Currently my code is working but I have to define it for every route. Is there a way where I can have a $app->post() on my main routes file that will effect every page on my site?

For example, on my admin page I have to add this code just to get my logout working:

$app->post('/admin', function ($request, $response) {
    // Define POST data
    $params = $request->getParams();

    // Logout User
    if ($params['logout']) {
        // Logout
        User::logout();

        // Redirect to login page
        return $response->withHeader("Location", "/");
    }
});

Is there a way I can add this to a single file and every other page such as site.com/admin and site.com/panel will be able to access this?

Thanks

  • 写回答

1条回答 默认 最新

  • dongtu1357 2016-09-12 19:37
    关注

    I solved it by using middleware.

    // Middleware to logout
    $app->add(function ($request, $response, $next) {
        // Define POST data
        $params = $request->getParams();
    
        // Logout User
        if ($params['logout']) {
            // Logout
            User::logout();
    
            // Redirect to login page
            return $response->withHeader("Location", "/");
        }
    
        // Return next middleware
        return $next($request, $response);
    });
    
    评论

报告相同问题?

悬赏问题

  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探