阅读量:1
在Express中,可以使用MySQL模块来连接和操作MySQL数据库。下面是一个简单的例子,展示了如何在Express中使用MySQL:
- 首先需要安装mysql模块:
npm install mysql
- 在Express应用中引入mysql模块,并创建一个数据库连接:
const mysql = require('mysql'); const connection = mysql.createConnection({ host: 'localhost', user: 'root', password: 'password', database: 'my_database' }); connection.connect((err) => { if (err) { console.error('Error connecting to MySQL: ' + err.stack); return; } console.log('Connected to MySQL as id ' + connection.threadId); });
- 可以执行SQL查询语句来操作数据库:
app.get('/users', (req, res) => { connection.query('SELECT * FROM users', (err, results) => { if (err) { console.error('Error querying MySQL: ' + err.stack); return; } res.json(results); }); }); app.post('/users', (req, res) => { const { username, email } = req.body; connection.query('INSERT INTO users (username, email) VALUES (?, ?)', [username, email], (err, result) => { if (err) { console.error('Error inserting into MySQL: ' + err.stack); return; } res.send('User added successfully'); }); });
以上代码示例中,我们创建了一个数据库连接,并使用connection.query
方法执行了查询和插入操作。在实际应用中,可以根据需要执行各种类型的SQL操作来操作MySQL数据库。