gpt4 book ai didi

javascript - React - 使用 wp_mail 发送电子邮件

转载 作者:行者123 更新时间:2023-12-01 07:37:41 27 4
gpt4 key购买 nike

我正在尝试在 React 中创建一个联系表单,我想用它通过我的 WordPress 安装发送电子邮件。通常,如果我进行 AJAX 调用,我必须将提交函数的名称作为操作传递,如下所示:

jQuery.ajax({
type: 'POST',
url: 'admin-ajax.php',
data: { action: 'send_form' }
}).done(function(response) {
alert(response);
});

但是,由于我没有在 React 应用程序中使用 jQuery,因此我使用 fetch 进行调用:

const res = await fetch('admin-ajax.php', {
method: 'POST',
body: JSON.stringify(this.state.values),
headers: {
"Content-Type": "application/json"
}
});

我的问题是,如何在 React 调用中传递操作 send_form

最佳答案

您可以附加到您的body参数:

body: JSON.stringify({...this.state.values, 'action': 'send_form'})

关于javascript - React - 使用 wp_mail 发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60592454/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com