要使用JavaScript获取MySQL数据库的数据,您需要创建一个后端服务来处理数据库操作。这里是一个使用Node.js和Express框架从MySQL数据库获取数据的示例:
npm init -y
npm install express mysql
app.js
的文件,并添加以下代码以设置Express服务器和MySQL连接:const express = require('express');
const mysql = require('mysql');
const app = express();
const port = 3000;
// 创建MySQL连接
const connection = mysql.createConnection({
host: 'localhost',
user: 'your_username',
password: 'your_password',
database: 'your_database'
});
// 连接到MySQL
connection.connect((err) => {
if (err) throw err;
console.log('Connected to MySQL!');
});
// 创建一个路由来获取数据
app.get('/data', (req, res) => {
const query = 'SELECT * FROM your_table';
connection.query(query, (err, results) => {
if (err) throw err;
res.send(results);
});
});
// 启动服务器
app.listen(port, () => {
console.log(`Server is running at http://localhost:${port}`);
});
请确保将上述代码中的your_username
、your_password
、your_database
和your_table
替换为您的MySQL数据库的实际凭据和表名。
node app.js
现在,您可以通过访问http://localhost:3000/data
来获取MySQL数据库中的数据。在JavaScript前端中,您可以使用Fetch API或XMLHttpRequest来调用此URL并获取数据:
fetch('http://localhost:3000/data')
.then((response) => response.json())
.then((data) => console.log(data))
.catch((error) => console.error('Error:', error));
这将在控制台中显示从MySQL数据库获取的数据。