标签:get

Python:GET与POST请求的区别

以下是get与post请求的区别 后退按钮/刷新:get无害,post数据会被重新提交 书签:get可收藏为书签,post不可收藏为书签 缓存:get能被缓存,post不能缓存 编码类型:get是application/x-www-form-urlencoded,post是application/x-www-form-urlencoded 或 multipa……