检查expando类(python for app engine)中是否填充了属性的好方法是什么?
我能帮你吗:

if Expando_class_name.property_name_to_check:
    do = someStuff

还是会给我一个错误?
谢谢!

最佳答案

使用hasattr

if hasattr(expando_instance, 'foo'):
  # Do something with expando_instance.foo

10-06 08:48