我是 Python 新手,我正在尝试使用 Python Anywhere 运行 web.py 应用程序,但我不断收到No template named index
错误消息。我已经修改wsgi.py
为使用以下内容:
import web
import MySQLdb
urls = (
'/', 'index'
)
render = web.template.render('/home/user/templates/')
任何帮助将不胜感激。
我是 Python 新手,我正在尝试使用 Python Anywhere 运行 web.py 应用程序,但我不断收到No template named index
错误消息。我已经修改wsgi.py
为使用以下内容:
import web
import MySQLdb
urls = (
'/', 'index'
)
render = web.template.render('/home/user/templates/')
任何帮助将不胜感激。