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 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题