gpt4 book ai didi

python - 将 GAE 模型转换为 JSON

转载 作者:太空宇宙 更新时间:2023-11-03 13:21:59 24 4
gpt4 key购买 nike

我正在使用 code found here将 GAE 模型转换为 JSON:

def to_dict(self):
return dict([(p, unicode(getattr(self, p))) for p in self.properties()])

它工作得很好,但如果一个属性没有值,它会放置一个默认字符串“None”,这在我的客户端设备(Objective-C)中被解释为一个真实值,即使它应该被解释为零值。

我如何修改上面的代码,同时保持其简洁性以跳过并且不将属性写入没有值的字典?

最佳答案

def to_dict(self):
return dict((p, unicode(getattr(self, p))) for p in self.properties()
if getattr(self, p) is not None)

你不需要先创建一个列表(周围的[]),你可以只使用generator expression即时建立值(value)。

它不是很简短,但是如果您的模型结构变得更复杂,您可能需要查看这个递归变体:

# Define 'simple' types
SIMPLE_TYPES = (int, long, float, bool, dict, basestring, list)

def to_dict(model):
output = {}

for key, prop in model.properties().iteritems():
value = getattr(model, key)

if isinstance(value, SIMPLE_TYPES) and value is not None:
output[key] = value
elif isinstance(value, datetime.date):
# Convert date/datetime to ms-since-epoch ("new Date()").
ms = time.mktime(value.utctimetuple())
ms += getattr(value, 'microseconds', 0) / 1000
output[key] = int(ms)
elif isinstance(value, db.GeoPt):
output[key] = {'lat': value.lat, 'lon': value.lon}
elif isinstance(value, db.Model):
# Recurse
output[key] = to_dict(value)
else:
raise ValueError('cannot encode ' + repr(prop))

return output

通过添加到 elif 分支,这可以很容易地扩展为其他非简单类型。

关于python - 将 GAE 模型转换为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10675849/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com