search_info = {‘id‘:132,‘user_role‘:3} print type(search_info) #输出 <type ‘dict‘> #转为string用dumps print type(json.dumps(search_info)) #输出 <type ‘str‘> #string转 dict用 loads() print type(json.loads(json.dumps(search_info))) #输出 <type ‘dict‘>
如果前后台通过接口交互时,返回给前台json格式数据时可以使用jsonify
#返回给前台json格式数据return jsonify({‘id‘:132,‘user_role‘:3})
如果前台调用A后台接口,A后台接口调用B后台接口,则A后台接口得到B后台的数据返回给前台时,用如下方法:
r = requests.get(www.xxx.com/restful, params={‘user_id‘:1})#返回的字符串数据先转为dict,再通过json格式传给前台 return jsonify(json.loads(r.text))
时间: 2024-10-12 23:40:45