我正在尝试使用config.set_request_property
设置回调,但回调永远不会被调用。没有错误消息,它只是默默地失败。为什么不起作用?如何找出问题所在?
以下是我在__init__
中使用的代码:
def callbackTest(request):
print 'Callback worked!'
return True
def main(global_config, **settings):
""" This function returns a Pyramid WSGI application.
"""
# pyramid_beaker add-on
session_factory = session_factory_from_settings(settings)
set_cache_regions_from_settings(settings)
config = Configurator(root_factory=MongoRootFactory(settings), session_factory=session_factory, settings=settings)
config.add_static_view('gfx', 'gfx', cache_max_age=3600)
config.add_static_view('fonts', 'fonts', cache_max_age=3600)
config.add_static_view('css', 'css/compiled', cache_max_age=3600)
config.add_static_view('js', 'js/compiled', cache_max_age=3600)
print 'callbackTest callback should be set...'
config.set_request_property(callbackTest, 'user', reify=True)
#********************************************************
# Authentication
#********************************************************
authn_policy = AuthTktAuthenticationPolicy(secret='asecret',
callback=groupfinder)
authz_policy = ACLAuthorizationPolicy()
config.set_authentication_policy(authn_policy)
config.set_authorization_policy(authz_policy)
#********************************************************
# View setup
#********************************************************
config.add_route('IndexTest', '/')
config.add_route('Home', '/h')
config.scan()
return config.make_wsgi_app()
有人能看到我的错误吗?
答案 0 :(得分:4)
我看到的唯一错误是你没有告诉我们你在哪里使用房产?只有在调用属性时才会调用属性。您是否有在视图中调用request.user
的代码,并且您收到错误,因为该属性不存在?如果您希望每个请求都自动调用该函数,那正是set_request_property
试图避免的。
答案 1 :(得分:1)
来自pyramid.config API文档:
callable可以是一个可调用的,可以接受请求作为其单个位置参数[...]
现在我不知道这是否可能导致您的问题,但它需要接受工作请求(尽管我希望抛出异常,而不是静默失败)。