Hello, I have installed these two modules:
Custom Field and Custom Field - Viewfield
I create some custom fields in the view, Extracting View Result Set Using Twig, As follows:
{% set data = drupal_view_result('node_custom_field', 'data') %}
In version 3.1.7, I obtained the following view field values:
Node
{#8281 βΆ}
+_relationship_entities: []
+index: 0
+"node__field_basic_field_basic_years": "xxx"
+"node__field_basic_field_basic_path": "xxx"
+"node__field_basic_field_basic_climate": "xxx"
+"node__field_basic_field_basic_geo": "xxx"
+"node__field_basic_field_basic_keywords": "xxx"
+"node__field_basic_field_basic_level": "xxx"
+"node__field_basic_field_basic_urcode": "xxx"
+"node_field_data_nid": "277"
+"nid": "277"
Now in version 3.1.8 to 3.1.11, the custom field has been lost:
Node
{#2911 βΆ}
+_relationship_entities: []
+index: 0
+"node_field_data_nid": "242"
+"nid": "242"
+"field_node_node_field_data_id"
The above is the problem I have discovered, I don't know if others have the same problem.