我在ES6中使用React.js构建了一个Web应用程序。我目前想创建一个基本的"联系我们"页面,并希望发送电子邮件。我是React的新手,刚刚发现我实际上无法使用React本身发送电子邮件。我使用nodemailer
和express-mailer
跟随教程,但在将示例代码与我的React文件集成时遇到了一些困难。具体来说,调用node expressFile.js
有效,但我不知道如何将其链接到我的React前端。
Nodemailer:https://github.com/nodemailer/nodemailer
快递邮件:https://www.npmjs.com/package/express-mailer
表单的My React组件如下。我如何编写Express文件,以便从我的React组件中的contactUs()
方法调用它?谢谢!
import React from 'react';
import {
Col,
Input,
Button,
Jumbotron
} from 'react-bootstrap';
class ContactView extends React.Component{
contactUs() {
// TODO: Send the email here
}
render(){
return (
<div>
<Input type="email" ref="contact_email" placeholder="Your email address"/>
<Input type="text" ref="contact_subject" placeholder="Subject"/>
<Input type="textarea" ref="contact_content" placeholder="Content"/>
<Button onClick={this.contactUs.bind(this)} bsStyle="primary" bsSize="large">Submit</Button>
</div>
)
}
};
export default ContactView;
答案 0 :(得分:12)
单击该按钮时,请向您的快速服务器执行ajax POST请求,即&#34; / contactus&#34;。 / contactus可以从帖子数据中提取电子邮件,主题和内容,并发送到邮件功能。
在React中:
$.ajax({
url: '/contactus',
dataType: 'json',
cache: false,
success: function(data) {
// Success..
}.bind(this),
error: function(xhr, status, err) {
console.error(status, err.toString());
}.bind(this)
});
在express中,在明确的邮政处理程序中添加nodemailer代码:
app.post('/contactus', function (req, res) {
// node mailer code
});
答案 1 :(得分:6)
或者,如果您没有/希望jQuery作为依赖项,则可以使用本机fetch api。此外,我通常设置我的表单,以便每个输入都有一个状态,然后在字符串化的blob中使用该状态。
客户端(React):
handleSubmit(e){
e.preventDefault()
fetch('/contactus', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: this.state.email,
// then continue this with the other inputs, such as email body, etc.
})
})
.then((response) => response.json())
.then((responseJson) => {
if (responseJson.success) {
this.setState({formSent: true})
}
else this.setState({formSent: false})
})
.catch((error) => {
console.error(error);
});
}
render(){
return (
<form onSubmit={this.handleSubmit} >
<input type="text" name="email" value={this.state.email} />
// continue this with other inputs, like name etc
</form>
)
}