我正在使用邮递员休息客户端发布此类数据。
{ '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 框架。