Database Design – ITS113Assignment – Asset Management systemThis assignment puts you in a hypothetical, but realistic, scenario where you work on data ...
分类:
数据库 时间:
2019-04-19 19:55:45
阅读次数:
142
For example we have a component, it needs to call 'react-redux' connect function. For the hightlighted part, there can be many possible reason for it ...
分类:
其他好文 时间:
2019-04-18 00:53:25
阅读次数:
124
503错误 说明是服务器内部的错误了 这是 为什么嫩 这是因为你的Linux虚拟机(我用的是centos版本的)的机器名 和 你的 ip地址的映射关系 不一致 导致访问失败 查看机器名的地址:cat etc/sysconfig/network hostname=e3mall 我的机器名 查看Linu ...
分类:
数据库 时间:
2019-04-13 01:13:58
阅读次数:
334
本地测试向服务器中ActiveMQ添加队列数据,报错连接超时 解决: 查看服务器端口号是否存在,(最好是0.0.0.0格式的,虽然暂时还不知道为啥得这个格式) 通过telnet测试该端口不通(61616端口) 服务器控制台开放该端口(添加规则) 再telnet就通了,然后继续测试,错误消失 ...
分类:
编程语言 时间:
2019-04-10 13:29:10
阅读次数:
763
```
import requests # GET请求
url = 'http://httpbin.org/get'
r = requests.get(url)
print(r.status_code,r.reason)
print(r.text)
# GET带参数请求
r = requests.g... ...
分类:
其他好文 时间:
2019-03-26 15:15:37
阅读次数:
155
版权声明:来自: 码代码的猿猿的AC之路 http://blog.csdn.net/ck_boss https://blog.csdn.net/u012797220/article/details/35236457 简单二分图匹配.... Card Game Cheater Time Limit: ...
分类:
其他好文 时间:
2019-03-25 19:13:24
阅读次数:
146
一 HTTP协议简介 HTTP(超文本传输协议)是一个应用层的面向对象协议,规定了浏览器和服务器端的数据交互的格式,基于请求和响应模型,必须要先有请求,后有响应,请求和响应必须成对出现。常基于TCP的连接方式,HTTP1.1版本中给出一种持续连接的机制。 HTTP协议的主要特点: 支持C/S模式。 ...
分类:
Web程序 时间:
2019-03-24 18:47:18
阅读次数:
189
参考:https://blog.csdn.net/whm18322394724/article/details/80290187 换成本机的jre就行了(路径要正确,特别是项目迁移的时候有时候用环境变量就不行了,用绝对路径就不会出这种错误(路径一定要正确)) ...
分类:
移动开发 时间:
2019-03-18 13:57:14
阅读次数:
487
Right from the start, you were a thief,打从一开始,你就是个偷心贼You stole my heart and你偷走了我的心I your willing victim我是你的俘虏I let you see the parts of me我要让你看看我That w ...
分类:
其他好文 时间:
2019-03-16 00:25:35
阅读次数:
209
1、装饰器,放在函数前面,跳过用例 @pytest.mark.skip(reason="no way of currently testing this") 2、放在函数里面,只控制某条用例 3、跳过某个模块 @pytest.importskip("模块名") 4、根据版本去控制跳过某个模块 @py ...
分类:
其他好文 时间:
2019-03-15 12:02:13
阅读次数:
146