摘要: 1 #注意,初始化 pip install pypiwin32 # 重新下载命令 : python -m pip install --upgrade pypiwin32 --force-reinstall 2 #如果是离线,则需要到pypiwin32官网下载文件,放入Python安装目录的Scrip 阅读全文
posted @ 2020-12-28 10:28 SimpleSmile 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 1 -- 准许获取传参内容 2 3 ngx.req.read_body() 4 5 -- 获取传参内容参数 6 7 8 9 local args = ngx.req.get_body_data() 10 11 local cjson = require("cjson"); 12 13 14 15 - 阅读全文
posted @ 2020-12-28 08:53 SimpleSmile 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: -- 准许获取传参内容 ngx.req.read_body() -- 获取传参内容参数 local args = ngx.req.get_body_data() for v in string.gmatch(args, '正则表达式') do -- 打印 正则表达式匹配的内容 print("from 阅读全文
posted @ 2020-12-28 08:50 SimpleSmile 阅读(333) 评论(0) 推荐(0) 编辑