我的观点中有以下代码:
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)
由于simplejson
将被弃用,我可以使用这个吗
content = json.dumps(obj, **json_opts)
还是我需要做更多?