上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 33 下一页
  2021年6月10日
摘要: web页面如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" con 阅读全文
posted @ 2021-06-10 16:27 文种玉 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 概述 协商缓存: 1. 客户端向服务端发送一个请求,请求相应的资源 2. 服务端向客户端发送一个响应,在响应头中携带两个关于缓存的信息,分别是 当前文件的唯一标识 (eTag)和 当前文件的最后一次修改时间(last-modified) 3. 客户端收到了响应文件和关于文件的缓存信息,并把缓存信息保 阅读全文
posted @ 2021-06-10 16:24 文种玉 阅读(85) 评论(0) 推荐(0) 编辑
摘要: web页面代码如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" c 阅读全文
posted @ 2021-06-10 16:20 文种玉 阅读(91) 评论(0) 推荐(0) 编辑
  2021年6月9日
摘要: //使用连接池连接mysql const mysql = require("mysql"); //创建连接池 password:"123", let pool = mysql.createPool({ host:"127.0.0.1", post:"3306", user:"root", datab 阅读全文
posted @ 2021-06-09 20:45 文种玉 阅读(269) 评论(0) 推荐(0) 编辑
摘要: /** * 使用node连接mysql模块 */ //引入MySQL数据库 const mysql = require("mysql"); //创建一个mysql连接对象,连接是使用对象来连接数据库 let connection = mysql.createConnection({ host:"12 阅读全文
posted @ 2021-06-09 20:44 文种玉 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 创建 index.ejs <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport 阅读全文
posted @ 2021-06-09 20:22 文种玉 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 图片请求案例 web页面如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewpo 阅读全文
posted @ 2021-06-09 20:12 文种玉 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ejs 页面 作用,可以在页面当中编写 js 代码 页面中 页面的名称不是 html 后缀,而是 ejs 后缀 比如: <%- errData %> node中 需要安装 ejs npm i ejs 在node当中引入 ejs //引入ejs app.set("view engine","ejs") 阅读全文
posted @ 2021-06-09 19:45 文种玉 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: 文件夹目录 连接数据库 const mongoose = require("mongoose"); mongoose.connect("mongodb://localhost:27017/school",{ useNewUrlParser: true, useUnifiedTopology: tru 阅读全文
posted @ 2021-06-09 19:39 文种玉 阅读(388) 评论(0) 推荐(0) 编辑
  2021年6月8日
摘要: 文件结构 一.使用mongoose连接MongoDB数据库 //引入mongoose数据库 const mongoose = require("mongoose"); //连接mongodb数据库 mongoose.connect("mongodb://localhost:27017/school" 阅读全文
posted @ 2021-06-08 20:57 文种玉 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 33 下一页