我正在通過一個python金字塔教程,我一直在儘可能多的筆記,因爲我可以在我寫的文件內。 發生了一些奇怪的事情,我想知道爲什麼。 我編寫了像教程中所做的那樣的development.ini文件,然後添加了註釋。 # we are using this file for configureation in development
# config our wsgi
[app:main]
#
我工作過Safari的金字塔教程 Python和金字塔框架 WEB應用我views.py文件裏有我下面的代碼有問題: @property
def current(self):
todo_id = self.request.matchdict.get('id')
todo = sample_todos.get(todo_id)
if not todo:
r
如何使用pyramid.wsgi文件中的production.ini文件的相對路徑作爲paster.get_app()函數的參數? 我試過了,它一直在抱怨它找不到該文件。在錯誤消息中,它添加了一個開始的正斜槓,所以如果下面的代碼出現錯誤,說明找不到文件「/./production.ini」。 from pyramid.paster import get_app, setup_logging
im