我有一本非常大的字典,如下所示:
{
'startIndex': 1,
'username': 'myemail@gmail.com',
'items': [{
'id': '67022006',
'name': 'Adopt-a-Hydrant',
'kind': 'analytics#accountSummary',
'webProperties': [{
'id': 'UA-67522226-1',
'name': 'Adopt-a-Hydrant',
'websiteUrl': 'https://www.udemy.com/,
'internalWebPropertyId': '104343473',
'profiles': [{
'id': '108333146',
'name': 'Adopt a Hydrant (Udemy)',
'type': 'WEB',
'kind': 'analytics#profileSummary'
}, {
'id': '132099908',
'name': 'Unfiltered view',
'type': 'WEB',
'kind': 'analytics#profileSummary'
}],
'level': 'STANDARD',
'kind': 'analytics#webPropertySummary'
}]
}, {
'id': '44222959',
'name': 'A223n',
'kind': 'analytics#accountSummary',
And so on....
当我在我的Jupyter笔记本上复制这个词典时,我运行完全相同的功能,我在我的django代码上运行它按预期运行,一切都是相同的,在我的django代码中我甚至打印出字典然后我把它复制到笔记本上并运行它,我得到了我期待的东西。
只是了解更多信息,这是函数:
google_profile = gp.google_profile # Get google_profile from DB
print(google_profile)
all_properties = []
for properties in google_profile['items']:
all_properties.append(properties)
site_selection=[]
for single_property in all_properties:
single_propery_name=single_property['name']
for single_view in single_property['webProperties'][0]['profiles']:
single_view_id = single_view['id']
single_view_name = (single_view['name'])
selections = single_propery_name + ' (View: '+single_view_name+' ID: '+single_view_id+')'
site_selection.append(selections)
print (site_selection)
所以我的猜测是我的笔记本安装了某种json解析器或类似的东西?那可能吗?为什么在django中我无法像在ipython笔记本上那样访问词典?
EDITS
更多信息:
错误出现在以下行:for properties in google_profile['items']:
Django调试是:TypeError at /gconnect/ string indices must be integers
本地Vars是:
all_properties =[]
current_user = 'myemail@gmail.com'
google_profile = `the above dictionary`
答案 0 :(得分:0)
所以,只是为了明确谁发现了这个问题:
如果您在数据库中保存字典,django会将其保存为字符串,因此您无法在之后访问它。
要解决此问题,您可以将其重新转换为字典:
this post的答案对我来说非常合适,换句话说:
import json
s = "{'muffin' : 'lolz', 'foo' : 'kitty'}"
json_acceptable_string = s.replace("'", "\"")
d = json.loads(json_acceptable_string)
# d = {u'muffin': u'lolz', u'foo': u'kitty'}
有很多方法可以将字符串转换为字典,这只是一种方法。如果你偶然发现了这个问题,你可以快速检查它是否是字符串而不是字典:
print(type(var))
在我的情况下,我有:
<class 'str'>
在用上述方法转换之前我得到了
<class 'dict'>
并且一切都按照
进行