私は私の意見では、次のコードを持っている:simplejson
以来django pythonでsimplejsonをjsonに置き換えるにはどうすればいいですか?
def __init__(self, obj='', json_opts={}, mimetype="application/json", *args, **kwargs):
content = simplejson.dumps(obj, **json_opts)
super(JSONResponse, self).__init__(content, mimetype, *args, **kwargs)
は廃止されようとしている、私はこの
content = json.dumps(obj, **json_opts)
または私はそれ以上何をする必要がありますを使用することができますか?
あなたはそれをテストしましたか?結果は何でしたか? – gecco
可能な複製:http://stackoverflow.com/questions/712791/json-and-simplejson-module-differences-in-python –
simplejsonは廃止される予定ですか? – Pramod