# 设置request拦截器
await page.setRequestInterception(True) # 设置request拦截器,想对请求作修改需要加这句
page.on('request',lambda req: asyncio.ensure_future(intercept_request(req)))
# 设置response拦截器
page.on('response',lambda rep: asyncio.ensure_future(intercept_response(rep)))
# 请求拦截器函数,设置拦截条件并可作修改
async def intercept_request(interceptedRequest):
if 'xxx' in interceptedRequest.url:
await interceptedRequest.continue_({"url": "xxx"}) # 修改url为xxx
else:
await request.continue_()
# 响应拦截器函数,设置拦截条件并可作修改
async def intercept_response(interceptedResponse):
if 'xxx' in interceptedResponse.url:
response = await interceptedResponse.text() # 获得请求的text内容
datasource mysql8 nacos no set 单机 mysql单机多实例
很多时候受限于资源限制,需要在单机上安装多个MySQL实例。
本文基于MySQL 5.7.27,介绍如何在单机环境下安装多个MySQL实例。
操作系统是Cent OS 6.8。
下文中的方案,建立了3个实例,端口分别为3306, 3307, 3308。1.创建MySQL用户账号首先创建mysql用户组和用户。
并设置不允许登录。# groupadd mysql
# useradd -s /sbin
python怎么往数列里添加一列数据 python数组添加一列
1 X_outliers=np.array([[3.4, 1.3], [3.2, 0.8]])2 y_outliers=np.array([0, 0])3
4 Xo1=np.concatenate([X, X_outliers[:1]], axis=0)5 yo1=np.concatenate([y, y_outliers[:1]], axis=0)6 Xo2=np.concatenate([X,
1.shell命令概述 Shell作用:命令解释器 介于操作系统内核与用户之间,负责解释命令行 获得命令帮助 内部命令help 命令的“--help” 选项 使用man命令阅读手册页 命令行编辑的几个辅助
2.K8s 学习视频
3.MySQL SQL语法大全
4.最完美再见,自此以后再无后续
5.206. 反转链表