我正在使用烧瓶和它的烧瓶 - 安静的延伸来做一个简单的restful-api。我在使用用户ID(参考)填充问题表时遇到问题。
model.py文件如下:
class User(UserMixin, SurrogatePK, Model):
__tablename__ = 'users'
username = Column(db.String(80), unique=True, nullable=False)
email = Column(db.String(80), unique=True, nullable=False)
#: The hashed password
password = Column(db.String(128), nullable=True)
created_at = Column(db.DateTime, nullable=False, default=dt.datetime.utcnow)
def __init__(self, username, email, password=None, **kwargs):
db.Model.__init__(self, username=username, email=email, **kwargs)
if password:
self.set_password(password)
else:
self.password = None
def set_password(self, password):
self.password = bcrypt.generate_password_hash(password)
def check_password(self, value):
return bcrypt.check_password_hash(self.password, value)
def generate_auth_token(self, expiration = 600):
s = Serializer('secret_key', expires_in = expiration)
return s.dumps({ 'id': self.id })
@staticmethod
def verify_auth_token(token):
s = Serializer('secret_key')
try:
data = s.loads(token)
except SignatureExpired:
return None # valid token, but expired
except BadSignature:
return None # invalid token
user = User.query.get(data['id'])
return user
def __repr__(self):
return '<User({username!r})>'.format(username=self.username)
class Question(SurrogatePK, Model):
__tablename__ = 'questions'
text = Column(db.String(400), nullable=True)
created_at = Column(db.DateTime, nullable=True, default=dt.datetime.utcnow)
user_id = ReferenceCol('users', nullable=True)
user = db.relationship('User', backref='question_users')
def __init__(self, text, created_at, user, **kwargs):
db.Model.__init__(self, text=text, user=user, **kwargs)
def __repr__(self):
return '<Question({text})>'.format(text=self.text)
我使用了flask-httpauth的HTTPBasicAuth来验证用户并使用以下装饰器将用户信息存储到全局变量g:
@auth.verify_password
def verify_password(username_or_token, password):
# first try to authenticate by token
user = User.verify_auth_token(username_or_token)
if not user:
# try to authenticate with username/password
user = User.query.filter_by(username = username_or_token).first()
if not user or not user.check_password(password):
return False
g.user = user
return True
最后,我的视图文件。 视图文件如下所示:
questionlist_fields = {
'text':fields.String,
'uri':fields.Url
}
class QuestionListAPI(Resource):
decorators = [auth.login_required]
def __init__(self):
self.reqparse = reqparse.RequestParser()
self.reqparse.add_argument('text', type=str, required=True,
help='No Question Title Provided', location='json')
super(QuestionListAPI, self).__init__()
def post(self):
args = self.reqparse.parse_args()
#----------the code causing error-----------------#
question = Question.create(text=args.text,
created_at=datetime.utcnow(),
user=g.user)
#-------------------------------------------------#
return {id:marshal(question, questionlist_fields)}
api.add_resource(QuestionListAPI, '/api/questions', endpoint='questions')
错误日志如下:
Traceback (most recent call last):
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1836, in __call__
return self.wsgi_app(environ, start_response)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1820, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask_restful\__init__.py", line 265, in error_router
return original_handler(e)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1403, in handle_exception
reraise(exc_type, exc_value, tb)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\_compat.py", line 32, in reraise
raise value.with_traceback(tb)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask_restful\__init__.py", line 265, in error_router
return original_handler(e)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\_compat.py", line 32, in reraise
raise value.with_traceback(tb)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask\app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask_debugtoolbar\__init__.py", line 124, in dispatch_request
return view_func(**req.view_args)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask_restful\__init__.py", line 450, in wrapper
return self.make_response(data, code, headers=headers)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask_restful\__init__.py", line 474, in make_response
resp = self.representations[mediatype](data, *args, **kwargs)
File "C:\Users\NI\Envs\nektime\lib\site-packages\flask_restful\representations\json.py", line 24, in output_json
dumped = dumps(data, **local_settings)
File "C:\Python34\Lib\json\__init__.py", line 237, in dumps
**kw).encode(obj)
File "C:\Python34\Lib\json\encoder.py", line 194, in encode
chunks = list(chunks)
File "C:\Python34\Lib\json\encoder.py", line 422, in _iterencode
yield from _iterencode_dict(o, _current_indent_level)
File "C:\Python34\Lib\json\encoder.py", line 368, in _iterencode_dict
raise TypeError("key " + repr(key) + " is not a string")
TypeError: key <built-in function id> is not a string
很抱歉代码很长。我只是不知道造成这个问题的原因。
答案 0 :(得分:4)
你的问题在这一行:
return {id:marshal(question, questionlist_fields)}
我想你想要这个:
return {'id': marshal(question, questionlist_fields)}
在某些语言中,特别是JavaScript,所有dict键都是字符串,语法允许你关闭引号。
在Python中,dict键可以是你想要的任何东西。 * 如果你想要一个字符串,你需要引号。如果您只是通过id
,那么您只是说您希望密钥成为变量id
中的任何内容。由于您没有名为id
的局部变量,因此您获得的是内置变量。
这仍然完全有效,即使它不是你想要的,也不是非常有用。
但是当你在JSON API上从Flask post
方法返回一个dict时,它会被编码为JSON。 JSON只允许字符串用于dict键,而不是函数。因此错误。
*嗯,不太好。它们可以是任何 hashable ,它不包含可变类型,如list
,以及其他一些不希望被其他原因用作键的类型。 子>