Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如您所知,django 使用 json 库将查询集序列化为 json,而 DjangoJSONEncoder 类使用 json.JSONEncoder 作为它的超类,并且 ujson 库中没有这样的类。如何在 django 序列化程序中使用 ujson 而不是 json?
你可以做这样的事情(使用值):
some_values = SomeModel.objects.values( 'pk', 'some_field', )
并将其序列化:
mark_safe(ujson.dumps(list(some_values), ensure_ascii=False))