我想在YAML中向我的webforms的Sourcecode添加评论。
#评论(没有引号)。
但是当我保存它的时候,它会自动被移除。
20_e_mailadres:
'#type': email
'#title': E-mailadres
# write a comment here
21_werkmail:
'#type': email
'#title': werk E-mailadres如何将注释添加到YAML when表单中,以便在保存时保留它们?
发布于 2020-08-14 09:12:41
发布于 2020-08-14 14:10:30
YAML源中不支持注释,因为每次更新元素时都会对YAML进行解码和重新编码。
在我的待办事项列表中,将对“#admin_notes”的支持添加到每个可用于存储“注释”的元素中。现在,您可以向任何元素中添加一个‘注释’属性。
https://drupal.stackexchange.com/questions/295997
复制相似问题