flask问题。


http://www.pythondoc.com/flask/tutorial/testing.html
今天看到这个地方,开始测试应用了。前面的章节都跟着做完了,模板也写好了,代码应该没什么错误,但是测试的时候却出现这样的错误,请问这要怎么解决。谢谢了

图片描述

python-flask

`荡漾sama 9 years, 5 months ago

手动输入sqlite3 flaskr.db<schema.sql之后,还是没有表。

MouMou酱 answered 9 years, 5 months ago

表不存在,no such table entris

著姐俺D嫁 answered 9 years, 5 months ago

我看你用的是windows系统,可能是数据库路径错了,所以找不到数据库表。教程中用的是Linux路径(/tmp/flaskr.db),所以你需要改成windows下的绝对路径
补充:
刚刚看到你的代码,DATABASE = 'flaskr.db',这应该改成flask.db的绝对路径。

薩陀十二惡皆空 answered 9 years, 5 months ago

Your Answer