drupal如何选择哪个函数来处理表单提交?

发布于 2024-09-01 23:42:46 字数 24 浏览 6 评论 0 原文

我真的很困惑,有人可以澄清一下吗?

I'm really confused,can someone clarify this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怼怹恏 2024-09-08 23:42:46

检查表单 API 快速入门指南中的“验证表单”和“提交表单”条目 - 默认情况下Drupal 将查找名为 [form_id]_submit 的函数,但这只是默认行为。您可以通过将回调函数名称放在表单声明的 #submit 属性中来覆盖此设置(或添加多个提交回调)(请参阅 http://api.drupal.org/api/drupal/developer--topics--forms_api_reference .html/6#submit-prop)。

Check the entries for 'Validating Forms' and 'Submitting Forms' in the Form API Quickstart Guide - by default Drupal will look for a function that is named [form_id]_submit, but this is just the default behavior. You can override this (or add more than one submit callback) by putting the callback function names in the #submit attribute of the form declaration (see http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.html/6#submit-prop).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文