webx/routes-session

0.1.0 2016-07-13 12:09 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:58:26 UTC


README

#WebX-Routes Session 为 WebX 路由框架提供会话功能

##安装方法 在你的路由项目中的 bootstrap 动作中

最低路由版本 0.6.0

use WebX\Routes\Session\Api\Session;

RoutesBootstrap::run([function(Routes $routes, Session $session, Response $response) {
    $count = ($session->data("count") ?: 0) + 1;
    $response->typeJson(["count"=>$count]);
    $session->setData("count",$count);
},"../vendor/webx/routes-session/config/routes"]);