要使用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數據庫獲取的數據。