Node.js 基于移动端的红色文化网站
这是一个基于Node.js的红色旅游文化网站项目,使用Express框架和MySQL数据库。以下是部分核心代码:
server.js
(Express服务器配置):
const express = require('express');
const path = require('path');
const app = express();
// 设置模板引擎
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
// 静态文件路径
app.use(express.static(path.join(__dirname, 'public')));
// 路由
app.use('/', require('./routes/index'));
app.use('/users', require('./routes/users'));
// 404 页面
app.use((req, res) => {
res.status(404).render('404', { title: '页面未找到' });
});
// 500 页面
app.use((err, req, res) => {
console.error(err.stack);
res.status(500).render('500', { title: '服务器错误' });
});
app.listen(3000, () => {
console.log('服务器运行在 http://localhost:3000/');
});
routes/index.js
(首页路由):
const express = require('express');
const router = express.Router();
// 首页路由
router.get('/', (req, res) => {
res.render('index', { title: '首页' });
});
module.exports = router;
views/index.ejs
(首页模板):
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title><%= title %></title>
</head>
<body>
<h1>欢迎来到红色旅游文化网站</h1>
</body>
</html>
以上代码提供了一个简单的Express服务器配置,包括路由、模板引擎设置和静态文件路径。同时展示了如何使用EJS模板引擎渲染页面,并处理了404和500错误页面。这个示例代码可以作为开发者学习和实践的基础。
评论已关闭