gpt4 book ai didi

javascript - 在 NodeJS 中导出 API 对象

转载 作者:行者123 更新时间:2023-11-29 15:38:11 27 4
gpt4 key购买 nike

我正在尝试在 NodeJS 中编写一个连接到 MySQL 数据库的 RESTful API。我有多个处理路由的文件:

file structure

我正在使用 www.npmjs.com 上的“mysql”包。在 app.js 中,我为数据库创建一个连接对象,但随后希望在 books.js 和条目.js 中使用该对象。我需要使用连接对象将查询发送到数据库,我计划在路由文件(books.js 等)中执行此操作。导出和导入该对象的正确方法是什么?我是 NodeJS 新手。此外,app.js 已经导出“app”。

app.js:

const express = require('express');
const app = express();
const morgan = require('morgan');
const bodyParser = require('body-parser');
const mysql = require('mysql');

const bookRoutes = require('./api/routes/books');
const entryRoutes = require('./api/routes/entries');

const connection = mysql.createConnection({
host: 'localhost',
user: 'rlreader',
password: process.env.MYSQL_DB_PW,
database: 'books'
});

app.use(morgan('dev'));
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());

app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization');
if (req.method === 'OPTIONS') {
res.header('Access-Control-Allow-Methods', 'GET');
return res.status(200).json({});
}
next();
});

// Routes which should handle requests
app.use('/books', bookRoutes);
app.use('/entries', entryRoutes);

app.use((req, res, next) => { //request, response, next
const error = new Error('Not found');
error.status = 404;
next(error);
});

app.use((error, req, res, next) => {
res.status(error.status || 500);
res.json({
error: {
message: error.message
}
});
});

module.exports = app;

books.js:

const express = require('express');
const router = express.Router();
const axios = require('axios');

router.get('/', (req, res, next) => {
axios.get('/').then(docs => {
res.status(200).json({
"hello": "hi"
})
}).catch(err => {
res.status(500).json({
error: err
});
})
});

module.exports = router;

最佳答案

GrafiCode 给出了这个问题的答案。我制作了一个名为 db.js 的单独文件

const mysql = require('mysql');
const connection = mysql.createConnection({
host: 'localhost',
user: 'rlreader',
password: process.env.MYSQL_DB_PW,
database: 'books'
});

module.exports = connection;

然后,在 books.js 中我添加:

const con = require('../../db');

然后我就可以在多个文件中使用 mysql 组件中的 .query() 了。

关于javascript - 在 NodeJS 中导出 API 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57997090/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com