搜索结果
查询Tags标签: req,共有 377条记录-
httprunner3源码解读(3)client.py
源码目录结构 ApiResponse 这个类没啥好说的 class ApiResponse(Response):"""继承了requests模块中的Response类,重写了里面的raise_for_status方法"""def raise_for_status(self):if hasattr(self, "error") and self.error:…
2021/11/5 17:13:18 人评论 次浏览 -
httprunner3源码解读(3)client.py
源码目录结构 ApiResponse 这个类没啥好说的 class ApiResponse(Response):"""继承了requests模块中的Response类,重写了里面的raise_for_status方法"""def raise_for_status(self):if hasattr(self, "error") and self.error:…
2021/11/5 17:13:18 人评论 次浏览 -
nginx配置本地https
OpenSSL创建自签名证书 openssl req -sha256 -newkey rsa:2048 -nodes -keyout agsenterprise.key -x509 -days 3650 -out agsenterprise.crt -config /usr/local/etc/openssl@1.1/openssl.cnf -extensions v3_req Common Name填写你要访问的域名地址修改openssl.cnf文件…
2021/11/3 7:12:53 人评论 次浏览 -
nginx配置本地https
OpenSSL创建自签名证书 openssl req -sha256 -newkey rsa:2048 -nodes -keyout agsenterprise.key -x509 -days 3650 -out agsenterprise.crt -config /usr/local/etc/openssl@1.1/openssl.cnf -extensions v3_req Common Name填写你要访问的域名地址修改openssl.cnf文件…
2021/11/3 7:12:53 人评论 次浏览 -
node.js处理http请求总结
/** @Description: get和post总结* @Version: 1.0* @Autor: Nanke_南柯* @Date: 2021-10-31 14:02:45* @LastEditors: Nanke_南柯* @LastEditTime: 2021-10-31 14:16:35*/ const http = require("http"); const querystring = require("querystring")…
2021/10/31 14:39:46 人评论 次浏览 -
node.js处理http请求总结
/** @Description: get和post总结* @Version: 1.0* @Autor: Nanke_南柯* @Date: 2021-10-31 14:02:45* @LastEditors: Nanke_南柯* @LastEditTime: 2021-10-31 14:16:35*/ const http = require("http"); const querystring = require("querystring")…
2021/10/31 14:39:46 人评论 次浏览 -
综合案例
条件标签:if choose<c:set var="num1" value="1"></c:set> <c:set var="num2" value="2"></c:set> <c:if test="${num1>num2}">ok</c:if> <c:if test="${num2>num…
2021/10/31 6:10:01 人评论 次浏览 -
综合案例
条件标签:if choose<c:set var="num1" value="1"></c:set> <c:set var="num2" value="2"></c:set> <c:if test="${num1>num2}">ok</c:if> <c:if test="${num2>num…
2021/10/31 6:10:01 人评论 次浏览 -
遇见狂神说JavaWeb笔记详解
该笔记大部分搬运B站遇见狂神说的javaWeb,顺便把图文合并记录,便于回顾 视频地址:https://www.bilibili.com/video/BV12J411M7Sj 记得三连文章目录1、基本概念 1.1、前言1.2、web应用程序web应用程序:1.3、静态web1.4、 动态web 2、web服务器 2.1、技术讲解2.2、web服…
2021/10/29 14:10:58 人评论 次浏览 -
遇见狂神说JavaWeb笔记详解
该笔记大部分搬运B站遇见狂神说的javaWeb,顺便把图文合并记录,便于回顾 视频地址:https://www.bilibili.com/video/BV12J411M7Sj 记得三连文章目录1、基本概念 1.1、前言1.2、web应用程序web应用程序:1.3、静态web1.4、 动态web 2、web服务器 2.1、技术讲解2.2、web服…
2021/10/29 14:10:58 人评论 次浏览 -
[nodejs] get post
getconst http = require(http); const url = require(url);const host = http://localhost:3000; http.createServer(function (req, res) {const { searchParams } = new URL(req.url, host);console.log(searchParams);res.writeHead(200, {Content-Type: text/plain})…
2021/10/28 11:10:35 人评论 次浏览 -
[nodejs] get post
getconst http = require(http); const url = require(url);const host = http://localhost:3000; http.createServer(function (req, res) {const { searchParams } = new URL(req.url, host);console.log(searchParams);res.writeHead(200, {Content-Type: text/plain})…
2021/10/28 11:10:35 人评论 次浏览 -
javaweb-27:Filter实现权限拦截
用户登录之后才能进入主页,用户注销后就不能进入主页了! 1.用户登录之后,向session中放入用户的数据 2.进入主页的时候,要判断用户是否已经登录 。要求:在过滤器中实现 代码show SysFilter.java package com.gongyi.filter;import javax.servlet.*; import javax.ser…
2021/10/23 17:11:31 人评论 次浏览 -
javaweb-27:Filter实现权限拦截
用户登录之后才能进入主页,用户注销后就不能进入主页了! 1.用户登录之后,向session中放入用户的数据 2.进入主页的时候,要判断用户是否已经登录 。要求:在过滤器中实现 代码show SysFilter.java package com.gongyi.filter;import javax.servlet.*; import javax.ser…
2021/10/23 17:11:31 人评论 次浏览 -
epress (NodeJS的服务器框架)
epress.NodeJS的服务器框架 1、epress1.1理解1.2脚手架的使用1.3 package.json 文件脚本使用2、app 认识2.1 app. use([path, ]callback[, callback. . .])2.2 app.set(name,value)2.3 express.static2.4 req 请求对象2.5 res(响应对象) 3、内置模块 path -- 对路径处理1、…
2021/10/20 9:09:29 人评论 次浏览