我想在类定义的之外定义一个Python属性:
c = C()
c.user = property(lambda self: User.objects.get(self.user_id))
print c.user.email
但是我收到以下错误:
AttributeError: 'property' object has no attribute 'email'
在类定义之外定义属性的正确语法是什么?
编辑:我正在使用lettuce
from lettuce import *
from django.test.client import Client
Client.user_id = property(lambda self: self.browser.session.get('_auth_user_id'))
Client.user = property(lambda self: User.objects.get(self.user_id))
@before.each_scenario
def set_browser(scenario):
world.browser = Client()
答案 0 :(得分:12)
像c
这样的对象实例不能拥有属性;只有像C
这样的类才能拥有属性。所以你需要在类而不是实例上设置属性,因为Python只在类上查找它:
C.user = property(lambda self: User.objects.get(self.user_id))