logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

python3运行报错:TypeError: Object of type 'type' is not JSON serializable解决方法(详细)

首先网上大多数博客没有明确说明问题的来源这个问题是由于json.dumps()函数引起的。dumps是将dict数据转化为str数据,但是dict数据中包含byte数据所以会报错。解决:编写一个解码类 遇到byte就转为str1.MyEncoder.pyimport jsonclass MyEncoder(json.JSONEncoder):def default(self, obj)...

ubuntu中pycharm无法运行脚本而终端可以运行脚本解决办法

很多人使用linux时候发现终端可以运行的脚本但是在pycharm里面运行不了原因如下:1.打开pycharm没有用sudo权限sudo ./pycharm.sh2.解释器没有换到终端的解释器(setting里)...

前后端分离项目中关于后台生成cookie前端如何获取的问题

前端vue serverUrl: "http://127.0.0.1:8088"时,调用后台接口,后台接口生成的cookie传给了127.0.0.1域,此时浏览器访问localhost:8088是不能拿到此cookie的,必须访问127.0.0.1:8088才能访问到!!!domain的名字不一样!!!!...

浙江大学PAT甲级A1083(C++)题解(大水题)

#include <iostream>#include <algorithm>using namespace std;struct student{string name;string id;int grade;}Stu[100010];bool cmp(student a,student b){return a.grade...

到底了