Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Bolt CMS,并希望有一个包含服务器上特定目录的所有文件的表。如何使用 Twig 模板实现这一点?
我发现以下调用有效。参数是文件目录中的路径。
{% 设置文件 = app.filesystem.browse('SomeDirectory')[0] %}
这不是 Twig 的任务。这是控制器层应该负责的事情。
获取控制器中的文件列表(尽管我可能会为此创建一个模型层类),并将列表传递给您的视图,它只需要在其中显示它。