上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: <input type="password" v-model="formData.password" class="l_input" placeholder="请输入密码" @keyup.enter="loginHandle" /> 阅读全文
posted @ 2022-08-18 08:41 fnasklf 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-01-18 19:28 fnasklf 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 黑马程序员28天PHP零基础入门到精通教程(P1基础6天)_哔哩哔哩_bilibili 阅读全文
posted @ 2021-06-27 14:43 fnasklf 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 在命令行通过“express name”的形式创建 cd进入项目中,安装包管理工具 可以看到目前目录是这样的 可以通过“npm start”运行,打开本地3000端口验证 一般想要项目运行在app.js中,因此可以在app.js中 1.注释掉 module.exports = app; 2.加入以下 阅读全文
posted @ 2021-05-10 09:53 fnasklf 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-27 15:13 fnasklf 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 扫描当前局域网内存活的主机 nmap -sP 192.168.43.0/24 扫描192.168.43.121所开发的端口 TCP SYN 扫描: nmap -sS 192.168.43.121 PING 扫描: nmap -sP 192.168.43.121 阅读全文
posted @ 2020-11-29 15:27 fnasklf 阅读(50) 评论(0) 推荐(0) 编辑
摘要: // 基本使用 //1. npm install ejs --save 安装 //2. 配置ejs模板引擎 app.set("view engine","ejs") //3.使用(默认加载views文件夹) app.get('/',(req,res)=>{ let title='mzl' let b 阅读全文
posted @ 2020-11-15 14:51 fnasklf 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-11-13 19:12 fnasklf 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 接收get 接收post(注意post是以流的方式传过来的,所以也需要以流的方式接收) 顺便一提,显示传到的方式可以调用 req.method() 方法 阅读全文
posted @ 2020-11-12 21:03 fnasklf 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 在表头添加表头 response.setHeader("Access-Control-Allow-Origin", "*") 注意一定要用setHeader,不能使用writeHead 后面的 * 的代表所有域名都能通过,一般只在生产环境中使用,真正在开发中只会具体设置几个域名 阅读全文
posted @ 2020-11-10 19:11 fnasklf 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页