我有一个“主应用程序”,在这个应用程序中,我在 init .py文件中有以下内容:
def main(global_config, **settings):
# various config settings
config.include(site_configs)
def site_configs(config):
config.add_route('portfolio', '/portfolio',
view='mainapp.views.portfolio',
view_renderer='/site/portfolio.mako')
在views.py中我有:
def portfolio(request):
## some code here
project_records = dbsession.query(projects).from_statement(
'SELECT * FROM projects ORDER by id DESC').all()
return {'project_records': project_records}
然后我有一个新的应用程序,我想扩展它。
所以在 init .py我做了:
from mainapp import site_configs
def main(global_config, **settings):
# various config settings
config.include(site_configs)
但是当我运行这个新应用程序时,我收到以下错误(此消息底部的完整回溯):
UnboundExecutionError: Could not locate a bind configured on mapper
Mapper|projects|projects, SQL expression or this Session
sqlalchemy引擎已在两个应用程序中正确设置。
我想要做的是在新应用程序中使用数据库而不是原始主应用程序中的数据库。
----------------------------
Full Traceback
----------------------------
URL: http://127.0.0.1:6543/portfolio
Module weberror.evalexception:431 in respond view
>> app_iter = self.application(environ, detect_start_response)
Module repoze.tm:23 in __call__ view
>> result = self.application(environ, save_status_and_headers)
Module pyramid.router:158 in __call__ view
>> response = view_callable(context, request)
Module pyramid.config:2824 in _rendered_view view
>> response = wrapped_view(context, request)
Module pyramid.config:2916 in _requestonly_view view
>> response = view(request)
Module mainapp.views:62 in portfolio view
>> project_records = dbsession.query(projects).from_statement('SELECT * FROM projects ORDER by id DESC').all()
Module sqlalchemy.orm.query:1579 in all view
>> return list(self)
Module sqlalchemy.orm.query:1689 in __iter__ view
>> return self._execute_and_instances(context)
Module sqlalchemy.orm.query:1694 in _execute_and_instances view
>> mapper=self._mapper_zero_or_none())
Module sqlalchemy.orm.session:717 in execute view
>> engine = self.get_bind(mapper, clause=clause, **kw)
Module sqlalchemy.orm.session:853 in get_bind view
>> ', '.join(context)))
答案 0 :(得分:2)
这真的与金字塔无关。您有一个全局变量dbsession
,您尝试在应用程序的不同子应用程序之间共享。如果所有应用程序的模型相同,那么您应该只有一个初始化函数来在main()
中配置全局。如果你对不同的子应用程序有不同的模型,那很好,但是你真的不应该试图以重叠的方式将它们全部推到同一个全局中,这听起来就像在这里发生的那样。也许你可以更具体地说明你打算如何工作?