0
添加更多的字段我這裏有一個簡單的webapp2的驗證+會話例如:https://github.com/coto/webapp2_auth(AppEngine上+ Python2.7)創建用戶並與webapp2_extras.auth
我不能添加更多屬性(例如電子郵件)的用戶我創建新用戶時的實體。
任何人都可以幫助我嗎?有沒有辦法通過使用user_attributes來做到這一點?
感謝
添加更多的字段我這裏有一個簡單的webapp2的驗證+會話例如:https://github.com/coto/webapp2_auth(AppEngine上+ Python2.7)創建用戶並與webapp2_extras.auth
我不能添加更多屬性(例如電子郵件)的用戶我創建新用戶時的實體。
任何人都可以幫助我嗎?有沒有辦法通過使用user_attributes來做到這一點?
感謝
答案是添加PARAMS到create_user方法是這樣的:
user = self.auth.store.user_model.create_user(username, password_raw=password, mail=email, shoes = "Chile", ip="120.12.34.123")