2011-12-25 67 views
1

我試圖使用EXPANDO用戶對象的性質研究:如何在webapp2中爲用戶對象使用expando屬性?

user = self.auth.store.user_model.create_user(username, password_raw=password) 
    user.name = username 

但我收到一條錯誤消息:

user.name = username 
    AttributeError: 'tuple' object has no attribute 'name' 

我應該怎麼做這爲用戶對象,而不是一個元組?

由於

回答

3
create_user

返回created, user的元組 - 所述第一是一個布爾標誌,它示出了物體是否已創建。

created, user = self.auth.store.user_model.create_user(... 
相關問題