gpt4 book ai didi

Google App Engine 中的 Python 函数装饰器

转载 作者:太空宇宙 更新时间:2023-11-03 23:50:50 25 4
gpt4 key购买 nike

我在 Google 的 AppEngine 中使用 python 函数装饰器时遇到问题。我对装饰器不是很熟悉,但是当您可能想要强制用户在执行某些功能之前登录时,它们在 Web 编程中似乎很有用。

无论如何,我正在关注一个 flickr 登录示例 here它使用 django 并修饰一个函数以要求 flickr 登录。我似乎无法让这种类型的装饰器在 AppEngine 中工作。

我把它归结为:

def require_auth(func):
def check_auth(*args, **kwargs):
print "Authenticated."
return func(*args, **kwargs)
return check_auth

@require_auth
def content():
print "Release sensitive data!"

content()

此代码在命令行中运行,但当我在 GoogleAppEngineLauncher (OS X) 中运行它时,出现以下错误:

check_auth() takes at least 1 argument (0 given) 

我不太确定为什么...

编辑以包含实际代码:@asperous.us 我更改了 content() 的定义以包含可变参数,这是你的意思吗?@Alex Martelli,“打印”在 AppEngine 中确实有效,但仍然是一个完全公平的批评。就像我说的,我正在尝试使用上面链接中的 flickr 登录。我试着像这样把它放到我的应用程序中:

def require_flickr_auth(view):
def protected_view(request,*args, **kwargs):
if 'token' in request.session:
token = request.session['token']
log.info('Getting token from session: %s' % token)
else:
token = None
log.info('No token in session')

f = flickrapi.FlickrAPI(api_key, api_secret,
token=token, store_token=False)

if token:
# We have a token, but it might not be valid
log.info('Verifying token')
try:
f.auth_checkToken()
except flickrapi.FlickrError:
token = None
del request.session['token']

if not token:
# No valid token, so redirect to Flickr
log.info('Redirecting user to Flickr to get frob')
url = f.web_login_url(perms='read')
print "Redirect to %s" % url

# If the token is valid, we can call the decorated view.
log.info('Token is valid')
return view(request,*args, **kwargs)

return protected_view

@require_flickr_auth
def content(*args, **kwargs):
print 'Welcome, oh authenticated user!'

def main():
print 'Content-Type: text/plain'
content()

if __name__ == "__main__":
main()

当我删除@require_flickr_auth 装饰时,字符串“Welcome ...”打印得很好。否则我会得到一个丑陋的 AppEngine 异常页面

type 'exceptions.TypeError': protected_view() takes at least 1 argument (0 given) 

在底部。

最佳答案

您在调用 content() 时不带任何参数,但装饰版本 protected_view 需要 request 参数。将参数添加到 content 或将其从 protected_view 中删除。

如果您的简单版本出现该错误,那么我会怀疑 content 是 Alex 建议的类方法。否则,您似乎是在告诉它至少要有一个参数,然后才不提供任何参数。

关于Google App Engine 中的 Python 函数装饰器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1123117/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com