logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

js提交数据到后台(json)," 被转译 成了"

StringEscapeUtils.unescapeHtml使用apache的lang包里的这个方法,如下:String appJson = StringEscapeUtils.unescapeHtml(request.getParameter("appJson"));//appJson

python更新pip国内下载源

国内目前有这几个:http://pypi.douban.com/simple/ 豆瓣http://mirrors.aliyun.com/pypi/simple/ 阿里http://pypi.hustunique.com/simple/ 华中理工大学http://pypi.sdutlinux.org/simple/ 山东理工大学http://pypi.mirrors.ustc.e

springboot解决传递json字符串时获取某个参数为null

当postman传递数据时,如此有多个解决方案,如:1.以自动转换实体@RequestMapping(value="/getAjax",method = RequestMethod.POST)@ResponseBodypublic void getAjax(@RequestBody News news){System.out.println("o...

python的基础爬虫

以爬取百度页面为例子,输出页面信息以及保存文件#!/user/bin/env python#coding=utf-8import urllib2def linkBaidu():url = 'http://www.baidu.com'try:response = urllib2.urlopen(url,timeout=3)

#python
python日志管理

myLog.py#!/usr/bin/env python# -*- coding:utf-8 -*-import loggingimport getpassimport sysimport time# 定义MyLog类class MyLog(object):'''这个类用于创建一个自用的log '''def __init__(self): #类MyLog的构造

#python
python的99乘法表

基础开始学习python99乘法表#!/user/bin/env python#-*- coding:utf-8 -*-class printTable(object):"""打印99乘法表"""def __init__(self):x = 10print x, "开始打印乘法表"self.print99(

#python
python修改head标识来爬取页面

#!/usr/bin/env python#-*- coding: utf-8 -*-import urllib2import userAgents'''userAgents.py是个自定义的模块,位置处于当前目录下 '''class Urllib2ModifyHeader(object):'''使用urllib2模块修改header '''def __init

#python
python黄金分割,斐波那契数列

#!/user/bin/env python#coding=utf-8class fuct(object):'''返回一个黄金分割数列'''def __init__(self):self.fList = [0,1]self.main()def main(self):listLen = raw_input("

#python
python的head标识

#!/usr/bin/env python#-*- coding: utf-8 -*-__author__ = 'hstking hstking@hotmail.com'pcUserAgent = {"safari 5.1 – MAC":"User-Agent:Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWe

#python
使用postman测试接口时需要先登录怎么办

1.在浏览器上先登录,登录成功后获取cookie:    2.接着打开postman:3.接下来send即可。其他参考资料:接口测试 postman:模拟发送一个需要 cookie 认证的请求https://testerhome.com/topics/7612...

    共 11 条
  • 1
  • 2
  • 请选择