我正在创建一个Web应用程序,我很好奇如何将数据发送到其中的MySQL数据库。我有一个在用户按下按钮时调用的函数,我希望这个函数以某种方式将数据发送到MySQL服务器。有谁知道如何处理这个问题?我尝试了npm MySQL模块,但似乎连接不起作用,因为它是客户端。这样做还有其他办法吗?我需要一个想法让我开始。
此致
答案 0 :(得分:19)
您将需要一台服务器来处理来自您的React应用程序的请求并相应地更新数据库。 单向将使用NodeJS,Express和node-mysql作为服务器:
var mysql = require('mysql');
var express = require('express');
var app = express();
// Set up connection to database.
var connection = mysql.createConnection({
host: 'localhost',
user: 'me',
password: 'secret',
database: 'my_db',
});
// Connect to database.
// connection.connect();
// Listen to POST requests to /users.
app.post('/users', function(req, res) {
// Get sent data.
var user = req.body;
// Do a MySQL query.
var query = connection.query('INSERT INTO users SET ?', user, function(err, result) {
// Neat!
});
res.end('Success');
});
app.listen(3000, function() {
console.log('Example app listening on port 3000!');
});
然后你可以在React组件中使用fetch
向服务器发出POST请求,有点像这样:
class Example extends React.Component {
constructor() {
super();
this.state = { user: {} };
this.onSubmit = this.handleSubmit.bind(this);
}
handleSubmit(e) {
e.preventDefault();
var self = this;
// On submit of the form, send a POST request with the data to the server.
fetch('/users', {
method: 'POST',
data: {
name: self.refs.name,
job: self.refs.job
}
})
.then(function(response) {
return response.json()
}).then(function(body) {
console.log(body);
});
}
render() {
return (
<form onSubmit={this.onSubmit}>
<input type="text" placeholder="Name" ref="name"/>
<input type="text" placeholder="Job" ref="job"/>
<input type="submit" />
</form>
);
}
}
请记住,这只是实现这一目标的无限方法之一。
答案 1 :(得分:1)
这取决于您的应用程序的组织方式,我猜您有一台提供React应用程序代码的服务器。 我建议您根据自己的喜好使用模块将必要的信息发送到您的服务器(如果有的话):
cloud:
aws:
credentials:
accessKey: 'myaccesskey'
secretKey: 'mysecretkey'
instanceProfile: true
region:
static: eu-west-1
stack:
auto: false
amazon:
s3:
default-bucket: 'mybucket'
内置XHR api(https://developer.mozilla.org/en/docs/Web/API/Fetch_API)fetch
基于回调的npm模块(https://www.npmjs.com/package/request)request
基于承诺的npm模块(https://www.npmjs.com/package/axios)如果您正在寻找从客户端到数据库执行所有工作的模块/插件我不知道并且不确定存在,因为通常建议使用代理(服务器重定向但也要格式化或阻止客户端和数据库之间的请求。)
然后,在您的服务器中,您可以格式化MySQL数据库可用的必要信息(如果有的话),然后使用您选择的模块联系您的MySQL数据库,第一个最受欢迎的模块似乎是: https://www.npmjs.com/package/mysql,但如果你知道另一个或有其他偏好继续。 (例如,使用MongoDB,我们可以使用Mongoose使请求更容易)