【发布时间】:2023-03-18 01:55:01
【问题描述】:
我有一个关于 Leaf 模板引擎的问题。
如何访问叶模板中的会话值? 例如在 Laravel 中循环 Flash 消息:https://laravel.com/docs/5.3/redirects#redirecting-with-flashed-session-data
我找不到解决方案来完成此操作。
提前致谢
【问题讨论】:
我有一个关于 Leaf 模板引擎的问题。
如何访问叶模板中的会话值? 例如在 Laravel 中循环 Flash 消息:https://laravel.com/docs/5.3/redirects#redirecting-with-flashed-session-data
我找不到解决方案来完成此操作。
提前致谢
【问题讨论】:
最新版本的 Vapor 在渲染视图时默认包含request。因此,您将能够使用
#(request.session) // in the latest version of Vapor
【讨论】: