Twig - Use variable key for object(Twig - 对对象使用变量键)
问题描述
我正在使用 Twig,但遇到了问题.
I am using Twig and I have a problem.
我想为对象使用变量索引时遇到问题.
I have a problem when I want to use a variable index for an object.
这是我的代码:
{% for label, field in params.fields %}
{{ dump(data.field) }}
{% endfor %}
data 是一个包含 {'email': 'test@test.fr', 'name': 'John'}
的对象.
data is an object containing {'email': 'test@test.fr', 'name': 'John'}
.
Field 是一个字符串数组,包含 ['email', 'name']
Field is an array of string containing ['email', 'name']
我无法动态显示我的对象的值.
I can't show the value my object dynamically.
{{ dump(data.email) }}
有效.
{{ dump(data.email) }}
works.
如何使用动态索引?
推荐答案
在 Twig 语法中,data.field
等于 PHP 中的 $data['field']
.换句话说,Twig 使用 field
作为数组键名,而不是将 field
变量的值作为键名.
In Twig syntax, data.field
is equal to $data['field']
in PHP. In other words, Twig use field
as the array key name instead of taking the value of the field
variable and use it as a key name.
您可以使用 attribute()
功能:
You can use the attribute()
function:
attribute
函数可用于访问动态"属性.变量的属性:
The
attribute
function can be used to access a "dynamic" attribute of a variable:
例子:
{{ dump(attribute(data, field)) }}
{# or simply #}
{{ attribute(data, field) }}
这篇关于Twig - 对对象使用变量键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Twig - 对对象使用变量键
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01