3

我正在使用 elementor wordpress 插件。我使用 elementor pro 插件制作了一个表格。我想在提交表单时获取数据并发送带有表单数据的外部 api 调用。我研究了 elementor 文档,但没有找到清晰的代码示例。有没有办法将表单数据发送到外部 api。

4

1 回答 1

8

在对elementor插件进行了大量研究之后。我得到了解决方案。我在我的自定义插件中添加了以下钩子,它可以工作。

add_action( 'wp_ajax_elementor_pro_forms_send_form', [ $this, 'ajax_send_form' ] );
add_action( 'wp_ajax_nopriv_elementor_pro_forms_send_form', [ $this, 'ajax_send_form' ] );

function ajax_send_form() {  
// form processing code here
}
于 2019-01-25T11:30:17.850 回答