- Issue created by @msn5158
- πΊπΈUnited States pcate
{% set testbamboo = bamboo_load_entity('node', 1) %} {% set jsonbamboo = testbamboo.field_jsondata.value | json_decode %} {{ jsonbamboo.key }}
- What field type is
field_jsondata
? - Can you post what the var dump of
testbamboo.field_jsondata.value
is? You may not be accessing a string value. - Are any watchdog errors being thrown? They may have more information.
- What field type is
- Status changed to Postponed: needs info
about 1 year ago 2:19pm 3 March 2024 field_jsondata from this module datafield β add the field of json type. test in drupal 10.2.3
- πΊπΈUnited States pcate
Can you post what the var dump of testbamboo.field_jsondata.value is?
Are any watchdog errors being thrown? They may have more information.@msn5158 I'll need more information to debug further.
Now working normally, but if the field data obtained is empty, use json_decode filter, the page will have an error.
Hello, Still have problem:
Test Code:
{% set dict1 = '{"44":"test"}'|decode_json %} {# for twig_json_decode moudel #} {% set dict2 = '{"44":"test"}'|json_decode %} {# for twig_tools moudel #} 1.{{ dict1["44"] }}<br> 2.{{ dict2["44"] }}<br> 3. {% for k,v in dict1 %} {{ "for twig_json_decode moudel normal output ==" }} {{ k }}-{{ v }} {% endfor %} <br> 4. {% for k,v in dict2 %} {{ "for twig_tools moudel no output ==" }} {{ k }}-{{ v }} {% endfor %} <br> {{ dump() }}
- πΊπΈUnited States pcate
@msn5158 thanks for providing the additional debug information.
Can you try:
{% set dict2 = '{"44":"test"}'|json_decode(true) %} {# for twig_tools module #}
The
json_decode
filter is just a wrapper around the PHP json-decode function. By default the function returns a JSON object as a PHP std object. By passing in thetrue
option it will instead return it as an associative array.This is documented in the module's doc page: https://www.drupal.org/docs/contributed-modules/twig-tools/conversion-fi... β
- Status changed to Fixed
about 1 year ago 4:44pm 1 April 2024 Automatically closed - issue fixed for 2 weeks with no activity.