logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

python中json.loads报错: Expecting ‘,‘ delimiter: line 1 column 3545 (char 3544)

在python中使用json.loads报错: Expecting ',' delimiter: line 1 column 3545 (char 3544)原因:json字符串为:jsonStr = "params": {"param2":"[ type:\"B\", ms:\"E\", t:\"243\"]"我的param2的参数值其实是二次封装成的字符串,但是json.loads()在解析时

#python
MySQL子查询优化-子语句含有group by时

当我使用Mysql进行下列语句的查询时:select count(1) from jy_info_user where user_card != '' and id IN (select id from jy_erp.jy_info_user where ifnull(user_card,'')!='' group by user_card HAVING count(1)=1 )

#mysql
Js 日期与字符串互相转换

日期转字符串格式//日期转字符串格式function DateToStr(date) {var year = date.getFullYear();//年var month = date.getMonth();//月var day = date.getDate();//日var hours = date.getHours();//时var min = date.getMinutes();//分va

#javascript
python使用requests+代理proxy报错:EOF occurred in violation of protocol (_ssl.c:1123)

在使用python获取别人的网站内容时,使用了requests+proxy代理,结果报错了:HTTPSConnectionPool(host='www.somewebsite.com',port=443):Maxretriesexceededwithurl:/en/products/power.html(CausedbySSLError(SSLEOFError(8,'EOFoccurredinvi

#python
到底了