使用json.dumps获取Python Flask以返回application / json

前端之家收集整理的这篇文章主要介绍了使用json.dumps获取Python Flask以返回application / json前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 Python Flask来创建服务器.我想将application / json发送回客户端(我的客户需要这个).当我使用json.dumps()时它会发回文本.

(如果我使用jsonify()而不是json.dumps(),我想知道应用程序/ json,但是这个函数似乎有些数据存在问题(如果我在这里没有得到解决方案,我会进一步研究) jsonify)).

服务器…………..

import json
from flask import Flask,render_template,url_for,current_app,request,jsonify

app = Flask(__name__)

@app.route("/<arg1>")
def route1(arg1):
    dict1 = {"prop1": "p1","prop2": "p2"}
    #return jsonify(dict1)      # this sends 'application/json'
    return json.dumps(dict1)  # this sends ' text/html; charset=utf-8'

app.run(host="0.0.0.0",port=8080,debug=True)

测试客户端(实际客户端由客户提供)……

import pycurl
import cStringIO

SERVER_URL = "http://192.168.47.133:8080"  

buf = cStringIO.StringIO()
c = pycurl.Curl()

c.setopt(c.URL,SERVER_URL + '/index.html?city=perth')
c.setopt(c.HTTPHEADER,['Accept:application/json']) 
c.setopt(c.WRITEFUNCTION,buf.write)
c.setopt(c.VERBOSE,True)

c.perform()
buf1 = buf.getvalue()
buf.close()

print(buf1)

解决方法

像这样改变它:
from flask import Response

@app.route("/<arg1>")
def route1(arg1):
    dict1 = {"prop1": "p1","prop2": "p2"}
    return Response(json.dumps(dict1),mimetype='application/json')
原文链接:https://www.f2er.com/js/158804.html

猜你在找的JavaScript相关文章