如何在 webapp2 中使用 User 对象的 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'
我应该如何对用户对象而不是元组执行此操作?
谢谢
I'm trying to use to expando proprties of the User object:
user = self.auth.store.user_model.create_user(username, password_raw=password)
user.name = username
But I receive an error message:
user.name = username
AttributeError: 'tuple' object has no attribute 'name'
How should I do this for a User object instead of a tuple?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
create_user
返回一个created, user
元组 - 第一个是一个布尔标志,显示对象是否已创建。create_user
returns a tuple ofcreated, user
- the first is a boolean flag which shows whether or not the object was created.