该怎么解决呢? HTTPServer里面指定max_buffer_size就可以了 EXAMPLE ...
分类:
Web程序 时间:
2018-09-06 18:13:17
阅读次数:
409
简要归纳PHP中两个常量定义关键字的区别: 1、define是函数,const是语言结构,PHP编译时const速度快。2、define只能用在类外,const类内类外皆可。3、define定义的常量是全局的,const定义的常量受命名空间限制。4、define可用在条件语句中,const不能。5、 ...
分类:
Web程序 时间:
2018-09-06 18:11:00
阅读次数:
189
function dialogInit(){ var $html = $('这是弹框里面的内容') var dialog = new BootstrapDialog({ title: '弹框标题', message: $html,//弹框中间的内容 buttons: [{ label: '取消', ... ...
分类:
其他好文 时间:
2018-09-06 16:30:06
阅读次数:
399
Django与ajax 01.AJAX简介: AJAX(Asynchronous Javascript And XML)翻译成中文就是“异步Javascript和XML”。 *同步交互:客户端发出一个请求后,需要等待服务器响应结束后,才能发出第二个请求 *异步交互:客户端发出一个请求后,无需等待服务 ...
分类:
Web程序 时间:
2018-09-06 14:46:35
阅读次数:
221
本来以为这题比较难的。。。 推下柿子 1/x+1/y=1/n! (x+y)*n!=xy 设y=n!+d (x+n!+d)*n!=x(n!+d) n!^2+d*n!=x*d (n!^2+d*n!)/d=x 只要令n!^2/d是整数就行了 那么就是算n!的约数个数 ...
分类:
其他好文 时间:
2018-09-06 14:30:55
阅读次数:
154
There are two ways to fill basic shapes like lines and rectangles. The first is to use specific drawing methods like Graphics.fillOval(). This example ...
分类:
其他好文 时间:
2018-09-06 11:07:03
阅读次数:
166
The default model for a list does not allow the addition and removal of items. The list must be created with a DefaultListModel. This method replaces ...
分类:
其他好文 时间:
2018-09-06 11:02:12
阅读次数:
147
centos 7.4.x consul 1.2.2 list: 172.16.16.103 172.16.16.112 172.16.16.115 下载: #cd /usr/local/ #wget https://releases.hashicorp.com/consul/1.2.2/consul ...
分类:
其他好文 时间:
2018-09-06 03:01:36
阅读次数:
225
做图形界面的时候,总会弹出一个cmd的黑框框,为了美观,通常希望将其隐藏。 查找资料得知:1.pythonw.exe .py不会出现(此方法没试过) 2.python.exe .pyw即将py文件的后缀改为pyw 方法2经测试,并未实现目标,但是在此基础上用pyinstall.exe变为exe文件时 ...
分类:
其他好文 时间:
2018-09-06 02:49:22
阅读次数:
231
这是开发的第三个小程序,基于一个物流系统,简化功能开发下单流程。登录的时候,系统是使用RSA进行加解密的。 流程:第一个接口获取到后端传过来的密匙共钥(publicKey),通过公钥使用RSA加密密码,使用加密后的密码和用户名调用第二个接口,获取登录信息需要的token,接口回调成功,把token存 ...
分类:
微信 时间:
2018-09-06 02:48:43
阅读次数:
645