如何从 MySQL 获取数据到 React html 表
有没有办法从 MySQL 数据库获取数据(这可以通过 Node.js 后端完成),但我无法在 React.js 中从该数据创建表?
有一个好的选择吗?
(我正在创建一个带有反应的电子应用程序,我想列出 MySQL 数据库中的所有用户) 在PHP中是这样的 https://www.w3schools.com/php/php_mysql_select.asp
var mysql = window.require('mysql');
function Test() {
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'root',
port : 8889,
database : 'loginsystem'
});
connection.connect();
var sql = 'SELECT * FROM users';
connection.query(sql, function (error, results, fields) {
if(error){
console.log(error);
}
if (!results.length){
console.log("error_fetching_data_from_database --",results.length);
}else{
console.log(result)
}
});
const listof = (
//I want print out useres here like table from the database
)
return(listof)
}
export default Test;
Is there a way to get data from the MySQL database (this can be done whit the Node.js back-end), but I can not create a table from that data in React.js?
Is there a good option to do that?
(I'm creating an electron application whit react and I want to list all the users from the MySQL database)
In PHP is like this https://www.w3schools.com/php/php_mysql_select.asp
var mysql = window.require('mysql');
function Test() {
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'root',
port : 8889,
database : 'loginsystem'
});
connection.connect();
var sql = 'SELECT * FROM users';
connection.query(sql, function (error, results, fields) {
if(error){
console.log(error);
}
if (!results.length){
console.log("error_fetching_data_from_database --",results.length);
}else{
console.log(result)
}
});
const listof = (
//I want print out useres here like table from the database
)
return(listof)
}
export default Test;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论