cookie是网站为了标示用户身份而储存在用户本地终端(Client Side)上的数据(通常经过加密)。 cookie数据始终在同源的http请求中携带(即使不需要),记会在浏览器和服务器间来回传递。 sessionStorage和localStorage不会自动把数据发给服务器,仅在本地保存。 ...
分类:
其他好文 时间:
2020-04-19 23:43:08
阅读次数:
108
1、get请求 get请求会把参数放在url后面,中间用?隔开,也可以把参数放在请求body中,如果参数中有中文,http传的时候requests框架会将中文换成urlencode编码 2、get和post请求回来的response中的data数据可以用r.text查看返回text文本,是srtin ...
分类:
其他好文 时间:
2020-04-16 22:07:44
阅读次数:
89
常用操作cookie的方法如下: get_cookie(name='aaa') 获取key(name)为aaa的cookie get_cookies() 获取所有cookie add_cookie(dict) 添加cookie delete_cookie(name='aaa') 删除cookie d ...
分类:
Web程序 时间:
2020-04-16 15:33:45
阅读次数:
100
Cookies:客户端(浏览器)存储信息的地方 Session:服务器的内置对象,可以在这里存储信息。按用户区分,每个客户端有一个特定的SessionID。存储时间按分钟计。 Application:整个Web应用程序存的地方,全局变量,记得加锁解锁。 global.aspx可以配置applicat ...
分类:
移动开发 时间:
2020-04-16 13:39:51
阅读次数:
82
最近在使用Cookies加密保存数据的时候,接触到crypto,使用还算简单,在这里记录一下。 可以在这个GitHub的https://github.com/brix/crypto-js上下载该js,它可以单独引入所需要加密方式的js;也可以引入一个crypto-js.js 这个文件,它相当于引入了 ...
分类:
Web程序 时间:
2020-04-14 20:41:51
阅读次数:
76
requests提供了hook机制,让我们能够在请求得到响应之后去做一些自定义的操作,比如打印某些信息、修改响应内容等。具体用法见下面的例子: import requests # 钩子函数1 def print_url(r, *args, **kwargs): print("raw_url "+r. ...
分类:
编程语言 时间:
2020-04-14 20:23:09
阅读次数:
81
Problem : Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child ...
分类:
其他好文 时间:
2020-04-14 18:27:41
阅读次数:
69
每周前端开源推荐第五期 marcuswestin / store.js localStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userDa ...
分类:
其他好文 时间:
2020-04-12 12:35:38
阅读次数:
62
get是登录请求,post是充值请求,需要登录的cookie.#利用requests封装get和post请求import requests#不论是get,post请求都需要url,data(传递参数,mobilephone,pwd,amount),cookies,get里没有cookies,# 我们 ...
分类:
其他好文 时间:
2020-04-11 20:19:54
阅读次数:
112