前言 有时候调用API时,会出现嵌套json(Json数组)的情况,这时如果使用fastjson就可以很快的进行解析。 例子 { "status": "1", "info": "OK", "infocode": "10000", "count": "1", "geocodes": [ { "form ...
分类:
编程语言 时间:
2021-05-03 11:41:00
阅读次数:
0
序列化:把python中的对象转成json格式字符串 反序列化:把json格式字符串转成python中的对象 drf的序列化组件(序列化器):把对象转成字典。因为有字典,直接丢到Response中就可以了 序列化器的使用 1 写一个序列化的类,继承Serializer 2 在类中写要序列化的字段 f ...
分类:
其他好文 时间:
2021-04-30 12:36:16
阅读次数:
0
配置响应格式 在setting中配置 REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( # 默认响应渲染类 'rest_framework.renderers.JSONRenderer', # json渲染器 'rest_framework.rende ...
分类:
其他好文 时间:
2021-04-30 12:35:53
阅读次数:
0
upload是将小程序码图片存储到云存储 json权限 我的界面调用云函数 ...
分类:
微信 时间:
2021-04-30 12:32:31
阅读次数:
0
禁用原生导航栏,APP、h5和微信小程序禁用的方法不一样哦,在page.json中配置 { "path": "pages/index/index", "style": { "navigationBarTitleText": "首页", "navigationStyle": "custom",//禁用 ...
分类:
移动开发 时间:
2021-04-30 12:06:06
阅读次数:
0
安装cargo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh vscode插件 ext install rust-lang.rust ext install vadimcn.vscode-lldb 调试配置 launsh ...
分类:
其他好文 时间:
2021-04-29 12:07:59
阅读次数:
0
GIS坐标系:WGS84,GCJ02,BD09,火星坐标,大地坐标等解析说与转换 各个坐标系的来龙去脉背景诠释,使用注意事项,各个坐标系转换方法。WGS84转GCJ02、GCJ02转BD009、BD09转GCJ02。坐标批量转换库,https: www npmjs com package coord ...
分类:
其他好文 时间:
2021-04-28 12:18:47
阅读次数:
0
# #一、填写请求头 #二、配置程序延迟时间 #三、填写源IP文件 #四、经了解,该接口限制一分钟采集45个 # import requests import json import os from fake_useragent import UserAgent from xlwt import W ...
vue打包时配置不同的环境变量(vue-cli4) 以配置测试环境test为例 1、在package.json文件中配置script文件 "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", ...
分类:
其他好文 时间:
2021-04-27 14:20:31
阅读次数:
0
运行环境python3.7 #coding=utf-8 import requests import time import json import re import sqlite3 url=[] for i in open("AURL.txt"): url.append(i) yaoqing=u ...
分类:
其他好文 时间:
2021-04-27 14:10:35
阅读次数:
0