当前位置:   article > 正文

node.js如何实现留言板功能?

node.js如何实现留言板功能?

一、实现效果如下:

20240422_160404

二、前提配置:

配置:需要安装并且导入underscore模板引擎

安装:在控制台输入npm install underscore -save

文件目录配置:

1》在文件里建一个data文件夹,此文件夹下建一个conmments.json文件,专门用来存放留言数据

2》将页面的css样式全写入public文件夹下的bootstrap下的bootstrap.css文件下

3》建一个view文件夹专门用来存放我的静态html页面。此案例中我有一个index.html留言展示主页和post.html发表留言表单页

4》我将运行代码写在app.js里

三、代码实现:

3-1》知识补充

get请求处理方法有:

(1)querystring.parse(req.url.query)

(2)url.parse(req.url,true)  第二个参数true,直接将查询字符串转化为了对象

3-2》index.html首页代码如下:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>首页</title>
  7. <link rel="stylesheet" href="../public/bootstrap/bootstrap.css">
  8. </head>
  9. <body>
  10. <div class="header container">
  11. <div class="header">
  12. <h1>留言本<small>谢谢你的留言</small></h1>
  13. <a href="/post" class="btn">发表留言</a>
  14. </div>
  15. <hr>
  16. </div>
  17. <div class="middle-container">
  18. <ul class="middle-ul">
  19. <% for(item of comments){ %>
  20. <li>
  21. <%= item.name%>说:<%= item.message%>
  22. <span class="floatright">
  23. <%= item.dataTime%>
  24. </span>
  25. </li>
  26. <% } %>
  27. </ul>
  28. </div>
  29. </body>
  30. </html>

post.html 发表留言表单如下: 

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>留言页</title>
  7. </head>
  8. <body>
  9. <div class="header container">
  10. <div class="header">
  11. <h1><a href="/">留言</a><small>发表评论</small></h1>
  12. </div>
  13. <hr>
  14. </div>
  15. <div>
  16. <form action="/a" method="get">
  17. <!-- action提交的路径、method提交的方法 -->
  18. <p style="font-size: large;">你的大名</p>
  19. <input type="text" name="name">
  20. <p style="font-size: large;">留言内容</p>
  21. <textarea name="message" id="" cols="30" rows="10">
  22. </textarea>
  23. <br>
  24. <button type="submit">发表</button>
  25. </form>
  26. </div>
  27. </body>
  28. </html>

3-4》data下的comment.json储存数据页如图:

  1. {
  2. "comments": [
  3. {
  4. "name": "555",
  5. "message": "5555",
  6. "dataTime": "2024/4/22 16:04:15"
  7. },
  8. {
  9. "name": "小一",
  10. "message": "我是小一",
  11. "dataTime": "2024/4/19 15:54:43"
  12. },
  13. {
  14. "name": "小米",
  15. "message": "我爱node",
  16. "dataTime": "2024/4/16 下午9:11:32"
  17. }
  18. ]
  19. }

3-5》app.js运行代码如下:

  1. //一、引入http、fs、path、url内置模块
  2. const http = require('http');
  3. const fs = require('fs');
  4. const path = require('path');
  5. const url = require('url');
  6. //二、导入underscore渲染模板
  7. const _ = require('underscore');
  8. //三、声明一个变量comments,用来存放留言数据
  9. var comments;
  10. //四、异步读取文件,读取user.json存放用户数据的文件
  11. fs.readFile(path.join(__dirname, 'data/comments.json'), (err, data) => {
  12. if (err) {//错误处理
  13. comments = {};
  14. } else {//如果读取正确就将读到的内容转换为一个对象存到comments里
  15. comments = JSON.parse(data.toString());
  16. }
  17. })
  18. //五、创建服务器
  19. const server = http.createServer();
  20. //六、服务器做出请求响应
  21. server.on('request', (req, res) => {
  22. let urls = url.parse(req.url, true); //解析get请求法二:第二个参数true,直接将查询字符串转为对象
  23. let pathname = urls.pathname;
  24. //七、利用if分支对不同的pathname做不同处理
  25. if (pathname == '/') { //展示留言首页 index.html
  26. fs.readFile(path.join(__dirname, 'view/index.html'), (err, data) => {
  27. if (err) { //错误处理
  28. res.writeHead(404, { 'Content-Type': 'text/html;charset=utf-8' });
  29. res.end('访问的资源不存在')
  30. } else {
  31. //使用underscore渲染模板
  32. let complied = _.template(data.toString());
  33. let html = complied(comments);
  34. res.end(html);
  35. }
  36. })
  37. //请求静态资源进行处理 此处就是我的图片资源 startsWith方法,以什么开头
  38. } else if (pathname.startsWith('/public')) {
  39. fs.readFile(path.join(__dirname, pathname), (err, data) => {
  40. if (err) {
  41. res.writeHead(404, { 'Content-Type': 'text/html;charset=utf-8' });
  42. res.end('访问的资源不存在')
  43. } else {
  44. // 资源存在则写入json文件
  45. fs.writeFile(path.join(__dirname, 'data/comments.json'), JSON.stringify(comments), (err) => {
  46. if (err) {
  47. res.end('写入失败');
  48. } else {
  49. res.end(data);
  50. }
  51. })
  52. }
  53. })
  54. //八、对post.html表单的留言进行读取和处理
  55. //点击发表留言按钮进入发表留言页面。发表留言按钮的href为/post
  56. } else if (pathname == '/post') { //读取留言
  57. fs.readFile(path.join(__dirname, 'view/post.html'), (err, data) => {
  58. if (err) {
  59. res.writeHead(404, { 'Content-Type': 'text/html;charset=utf-8' });
  60. res.end('访问的资源不存在')
  61. } else {
  62. res.end(data);
  63. }
  64. })
  65. //form表单的action为'/a'
  66. } else if (pathname == '/a') { //处理留言
  67. //将url查询字符串解析结果urls.query赋值给自定义变量postcomments
  68. var postcomments = urls.query;
  69. var data = new Date();
  70. // 调用Date对象的toLocaleString方法,将当前的日期和时间转换为一个本地化的字符串格式,并将其赋给变量now。
  71. var now = data.toLocaleString();
  72. // 给postcomments添加dataTime属性,并且将now变量的值添加到postcomments对象中
  73. postcomments.dataTime = now;
  74. // 将一个名为comments的对象中的comments数组的第一个位置插入postcomments对象。
  75. comments.comments.unshift(postcomments);
  76. // 重新发送请求
  77. // 状态码设置为302,临时重定向
  78. res.statusCode = 302;
  79. // 设置HTTP响应头中的Location字段为/,表示服务器希望浏览器重定向到网站的根URL。
  80. res.setHeader('Location', '/')
  81. res.end()
  82. }
  83. });
  84. //九、启动监听
  85. server.listen(3000, '127.0.0.1', () => {
  86. console.log('http://127.0.0.1:3000');
  87. })

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/474126
推荐阅读
相关标签
  

闽ICP备14008679号