3
什麼是檢查,看是否有屬性在在Expando類(Python的App Engine的)應用引擎 - 檢查,看是否有屬性爲Expando類中存在
我可以做填充的好辦法:
if Expando_class_name.property_name_to_check:
do = someStuff
或者是會給我一個錯誤?
謝謝!
什麼是檢查,看是否有屬性在在Expando類(Python的App Engine的)應用引擎 - 檢查,看是否有屬性爲Expando類中存在
我可以做填充的好辦法:
if Expando_class_name.property_name_to_check:
do = someStuff
或者是會給我一個錯誤?
謝謝!
使用hasattr
:
if hasattr(expando_instance, 'foo'):
# Do something with expando_instance.foo
一個更好的辦法是使用dynamic_properties的方法。
if 'foo' in entity.dynamic_properties(): pass