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.
任何人都知道如何在 URL 中设置键/值对来维护状态?
基本上我想根据复选框在列表页面中保持状态。如果我编辑一行并返回此页面,我希望列表保持原样。有什么建议么?
您可以将其添加到您的 list.html.twig 中。例如。隐藏复选框 id 是 hide_archived。
{% if app.request.query.has('hide_archived') %} {% set _request_parameters = ({ hide_archived: app.request.get('hide_archived') }) %} {% endif %}