1

我正在使用邮递员休息客户端发布此类数据。

{ 'name':"xyz",   
    'data':[{'age': 0, 'foo': 1}, {'age': 1, 'foo': 1}]
 }

我以 unicode 形式获取数据,因此无法从此类数据中获取字典值。

我在做什么

def post(self, request):
     d = request.DATA
     # here prints right data if we "print d"
     # but d is unicode so we could not access dictionary
     for item in d['data]:
         print item

我如何将 unicode 转换为列表以及字典中的列表项,以便我可以访问字典项。

注意我正在使用 django rest 框架。

4

1 回答 1

1

您可以使用ast.literal_eval

>>> from ast import literal_eval
>>> data = u'{ \'name\':"xyz", \'data\':[{\'age\': 0, \'foo\': 1}, {\'age\': 1, \'foo\': 1}]}'
>>> dic = literal_eval(data)
>>> dic['data']
[{'age': 0, 'foo': 1}, {'age': 1, 'foo': 1}]
>>> 
于 2013-06-18T10:47:23.363 回答