摘要: 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(24) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(65) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: npm安装jQuery并引入 app.js const http = require('http'); const url = require('url') const querystring = require('querystring') const fs = require('fs') let 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(28) 评论(0) 推荐(0)
摘要: const http = require('http'); const url = require('url') const querystring = require('querystring') let user={ admin:123456 } http.createServer((req,r 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(8) 评论(0) 推荐(0)
摘要: form.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(29) 评论(0) 推荐(0)
摘要: form.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(17) 评论(0) 推荐(0)
摘要: let http = require('http') let fs = require('fs') http.createServer((req,res)=>{ console.log("我来了"); console.log(req.url); res.end('index'); fs.readFi 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(17) 评论(0) 推荐(0)
摘要: demo4.js exports.a=1; exports.b=2; let c=3; demo5.js const mod1=require('./demo4'); console.log(mod1.a); console.log(mod1.b); console.log(mod1.c); 阅读全文
posted @ 2022-09-02 21:49 前端导师歌谣 阅读(13) 评论(0) 推荐(0)