Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在其中添加了一些自定义字段,form_alter但无法获取hook_node_presave. 我错过了什么还是应该使用其他形式的钩子来获取价值?
form_alter
hook_node_presave
hook_node_presave不应该能够检索使用添加到节点的表单元素hook_form_alter。简单地说,因为hook_node_presave只作用于附加到节点对象本身的字段,而不是提交的表单。
hook_form_alter
因此,您所经历的是正常行为。