auth_user.username 给出 'NoneType' 对象没有属性 'username'
auth_user.username gives 'NoneType' object has no attribute 'username'
所以我正在尝试保存一个 sql 表单,以便与填写表单的用户一起保存。
db = DAL("sqlite://storage.sqlite")
db.define_table('Pedido',
Field('Usuario',default=auth.user.username,readable=False, writable=False),
Field('Nome','string'),
Field('Telefone', 'string',),
Field('Email', 'string'),
Field('CEP','string'),
Field('Rua', 'string'),
Field('Tipo_de_cliente',requires=IS_IN_SET(['Cliente Fisico', 'Cliente Juridico'])),
Field('Tipo_de_servico', requires=IS_IN_SET(['Reparo', 'Ajusto', 'Confecção','Outros'])),
Field('Tipo_de_peca', requires=IS_IN_SET(['Camisa', 'Jaqueta', 'Saia','Calça','Vestido','Shorts','Camiseta'])),
Field('Descricao', 'text'),
Field('Data_de_recebimento_do_pedido','date'),
Field('Data_de_entrega','date'),
Field('Valor','double'),
Field('Tipo_Pagamento',requires=IS_IN_SET(['Dinheiro','Cartão','Cheque'])),
Field('Pago','boolean'))
上面的代码只允许我在用户登录时保存表单,否则它会给出
'NoneType' object has no attribute 'username'
和我的控制器
@auth.requires_login()
def pedido():
Pedido = SQLFORM(db.Pedido)
Pedido.element('input[type=submit]')['_onclick'] = "return confirm('Deseja salvar?');"
if Pedido.process().accepted:
response.flash = 'Salvo com sucesso'
return dict(Pedido=Pedido)
我已经看了一遍,每一个答案都是行不通的,
有人有这个错误的解决方案吗?无论我注销还是无法再次登录,我都必须评论 usuario 字段,以便我能够再次登录
auth.user
是当前登录用户的记录,所以在没有用户登录的时候是None
,你可以修改你的代码如下:
Field('Usuario', default=auth.user.username if auth.user else None)
所以我正在尝试保存一个 sql 表单,以便与填写表单的用户一起保存。
db = DAL("sqlite://storage.sqlite")
db.define_table('Pedido',
Field('Usuario',default=auth.user.username,readable=False, writable=False),
Field('Nome','string'),
Field('Telefone', 'string',),
Field('Email', 'string'),
Field('CEP','string'),
Field('Rua', 'string'),
Field('Tipo_de_cliente',requires=IS_IN_SET(['Cliente Fisico', 'Cliente Juridico'])),
Field('Tipo_de_servico', requires=IS_IN_SET(['Reparo', 'Ajusto', 'Confecção','Outros'])),
Field('Tipo_de_peca', requires=IS_IN_SET(['Camisa', 'Jaqueta', 'Saia','Calça','Vestido','Shorts','Camiseta'])),
Field('Descricao', 'text'),
Field('Data_de_recebimento_do_pedido','date'),
Field('Data_de_entrega','date'),
Field('Valor','double'),
Field('Tipo_Pagamento',requires=IS_IN_SET(['Dinheiro','Cartão','Cheque'])),
Field('Pago','boolean'))
上面的代码只允许我在用户登录时保存表单,否则它会给出
'NoneType' object has no attribute 'username'
和我的控制器
@auth.requires_login()
def pedido():
Pedido = SQLFORM(db.Pedido)
Pedido.element('input[type=submit]')['_onclick'] = "return confirm('Deseja salvar?');"
if Pedido.process().accepted:
response.flash = 'Salvo com sucesso'
return dict(Pedido=Pedido)
我已经看了一遍,每一个答案都是行不通的, 有人有这个错误的解决方案吗?无论我注销还是无法再次登录,我都必须评论 usuario 字段,以便我能够再次登录
auth.user
是当前登录用户的记录,所以在没有用户登录的时候是None
,你可以修改你的代码如下:
Field('Usuario', default=auth.user.username if auth.user else None)