首页 > TAG信息列表 > dictData

python json文件

def loadJson(jsonfile): with open(jsonfile, 'r', encoding='utf-8') as f: dictData = json.load(f) return dictData def saveJson(jsonfile, data): with open(jsonfile, "w", encoding='utf-8') as f:

djangopost请求报错:Forbidden (CSRF token missing or incorrect.)

解决办法:引入csrf_exempt包: from django.views.decorators.csrf import csrf_exempt 然后增加装饰器: @csrf_exempt def register(request): request.encoding='utf-8' if request.GET: return render(request,'register.html') elif reques

Python中xml和dict格式转换

在做接口自动化的时候,请求数据之前都是JSON格式的,Python有自带的包来解决。最近在做APP的接口,遇到XML格式的请求数据,费了很大劲来解决,解决方式是:接口文档拿到的是XML,在线转化为json格式(目的是拿到xml数据的模板),存放到json文件中,根据接口名去提取。 github原文介绍:使用XML的Pyth