- ``` python @app.route('/test/', methods=['GET', 'POST'], endpoint='test01') def test(): getData = request.args # 利用request对象获取GET请求数据 print('获取的GET数... ...
分类:
其他好文 时间:
2020-02-17 18:10:10
阅读次数:
104
#所有环境公用的配置属性management: endpoint: health: show-details: always endpoints: web: exposure: include: '*'info: app-name: pay author: xiaofeiyang email: 46 ...
分类:
编程语言 时间:
2020-02-14 11:02:53
阅读次数:
104
微信公众号:一个优秀的废人。如有问题,请后台留言,反正我也不会听。 前言 昨天那篇介绍了 WebSocket 实现广播,也即服务器端有消息时,将消息发送给所有连接了当前 endpoint 的浏览器。但这无法解决消息由谁发送,又由谁接收的问题。所以,今天写一篇实现一对一的聊天室。 今天这一篇建立在昨天 ...
分类:
编程语言 时间:
2020-01-17 13:23:48
阅读次数:
91
问题 安装过程中出现如下错误 错误1920未能启动服务“Office Software Protection Platform”(osppsvc)。 解决方案 win+R运行“ regedit ”,打开注册表 找到HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windo ...
分类:
其他好文 时间:
2020-01-15 21:22:14
阅读次数:
350
反射型xss low级别 代码如下: 1 <?php 2 3 header ("X-XSS-Protection: 0"); 4 5 // Is there any input? 6 if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] ! ...
分类:
其他好文 时间:
2020-01-14 20:33:07
阅读次数:
73
HTTP工具类,重构封装了常用的3种协议:json、x-www-form-urlencoded、multipart/form-data支持文件上传。 public class Http { public static string Get(string endPoint, Dictionary<st ...
分类:
Web程序 时间:
2020-01-11 17:01:29
阅读次数:
138
Adress :服务地址 Binding :通讯方式(服务通讯 http,tcp ,udp) Contract :服务内容(服务边界) 配置文件 所有的wcf配置都在system.servicemodel 节点下 services:对endpoint进行配置 bindings:对所有binding进 ...
分类:
其他好文 时间:
2020-01-11 09:26:43
阅读次数:
105
1,指定 Protocol,初始化相应的 Endpoint,我们分析的是 NioEndpoint;2,init 过程:在 NioEndpoint 中做 bind 操作;3,start 过程:启动 worker 线程池,启动 1 个 Acceptor 和 2 个 Poller,当然它们都是默认值,可配 ...
分类:
其他好文 时间:
2020-01-11 00:28:42
阅读次数:
80
与 Victor 保持近距离。 简介 如果敌人靠近你,那就 attack !否则, moveXY 到 X 处保护农民。 记得,你可以用这个确定距离: distance = hero.distanceTo(enemy) 默认代码 while True: enemy = hero.findNearest ...
分类:
其他好文 时间:
2020-01-10 10:46:34
阅读次数:
86
在 Mac 使用过程中遇到 Operation Not Permitted 问题,文件移动不了,也删除不掉.这是由于 SIP 功能引起的问题.SIP(System Integrity Protection) 是 Apple 在 OS X 10.11 以后的版本中默认启动的一项系统保护程序.SIP 会 ...
分类:
其他好文 时间:
2020-01-09 19:01:13
阅读次数:
77