摘要: Mysql数据库 建表 Mysql中没有 number 和 varchar2 varchar必须要指明长度; 数据库的命名只能包含:数字,字母,_(下划线) 数据库中是不区分大小写的 create table student( id int primary key auto_increment co 阅读全文
posted @ 2022-06-20 20:30 朱在春 阅读(134) 评论(0) 推荐(0) 编辑
摘要: NodeJS内置http模块的使用 根据URL的查询字符串转换成我们能看懂的 const http = require('http') const url = require('url') const qs = require('querystring') http.createServer((re 阅读全文
posted @ 2022-06-20 16:59 朱在春 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Nginx踩过的坑 我把虚拟机和Ubuntu都重装了一遍,结果在windows下又行了 防沉迷nginx只需这两步 tasklist | find /i "nginx.exe" || exit taskkill /im nginx.exe /f 这该死的浏览器缓存,导致我每次修改nginx配置的时候 阅读全文
posted @ 2022-06-20 10:58 朱在春 阅读(46) 评论(0) 推荐(0) 编辑