Twig 模板 JSON 可读
Twig template JSON to something readable
我使用 october CMS 并尝试在其中一个模块上扩展一些未来。
我的数据库中有设置列,其中有几个字段。但是当用户在这个字段中输入一些东西时,数据库会像 JSON : {"about":"dsadasdas","nickname":"bojko"}
或 {"nickname":"qnica","about":"test"}
当我尝试在个人资料页面中显示这个时 {{ueuser.user.settings}}
首先给我这个错误
An exception has been thrown during the rendering of a template ("Array to string conversion").
看了很多,补充{{ueuser.user.settings|join(',')}}
现在显示 or
但我想添加一些样式来显示类似
昵称:qnica
关于:测试
....等等
我该怎么做?这里有一个{{dump(ueuser.user.settings)}}
你应该检查 https://twig.symfony.com/doc/3.x/tags/for.html
{# example #}
<ul>
{% for key, value in ueuser.user.settings %}
<li>{{ key }}: {{ value }}</li>
{% endfor %}
</ul>
我使用 october CMS 并尝试在其中一个模块上扩展一些未来。
我的数据库中有设置列,其中有几个字段。但是当用户在这个字段中输入一些东西时,数据库会像 JSON : {"about":"dsadasdas","nickname":"bojko"}
或 {"nickname":"qnica","about":"test"}
当我尝试在个人资料页面中显示这个时 {{ueuser.user.settings}}
首先给我这个错误
An exception has been thrown during the rendering of a template ("Array to string conversion").
看了很多,补充{{ueuser.user.settings|join(',')}}
现在显示
但我想添加一些样式来显示类似 昵称:qnica 关于:测试 ....等等
我该怎么做?这里有一个{{dump(ueuser.user.settings)}}
你应该检查 https://twig.symfony.com/doc/3.x/tags/for.html
{# example #}
<ul>
{% for key, value in ueuser.user.settings %}
<li>{{ key }}: {{ value }}</li>
{% endfor %}
</ul>