这是一个创建于 3521 天前的主题,其中的信息可能已经有所发展或是发生改变。
有一行代码:
blog_list = Blog.objects.filter(pub_date__month=2) 这么写没问题,可以获取结果 ,pub_date__day也没问题。
但是
blog_list = Blog.objects.filter(pub_date__year=2015) 这样写就报如下错误:
-----------------------------------------------
Django Version: 1.7.1
Exception Type: TypeError
Exception Value:
not enough arguments for format string
Exception Location: D:\Python27\lib\site-packages\MySQLdb\cursors.py in execute, line 187
Python Executable: D:\Python27\python.exe
Python Version: 2.7.8
------------------------------------------------------
很费解,代码没错呀,__year 失效了? MySQL-python换成1.2.5也不行。
|
|
1
tkliuxing 2015-03-17 11:57:55 +08:00 1
试一试raw写SQL能不能用。
|