We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When use express you can intercept request, validate and store some data in locals object to use in controller for session or multitenance porposes.
i suggest to locals attribute on application can be public or have some methods to get data on request:
/** * @var array */ public $locals = array();
$app->use(function($req, $res) use ($app){ $apikey = $req->header('api-key'); $app->local('tenante', $apikey); }); class BaseController { public function home($req, $res) { $res->json($req->app->locals); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When use express you can intercept request, validate and store some data in locals object to use in controller for session or multitenance porposes.
i suggest to locals attribute on application can be public or have some methods to get data on request:
The text was updated successfully, but these errors were encountered: