在Postgresql数据库中有page
表,用于保存页面信息。
在页面创建过程中,值中添加了空格
pagetitle
,但在代码中,我从pagetitle
- Detailed findings
中找到了页面对象。所以有任何方法可以找到这个。 (比如python >>> "abc".__contains__("a")
代码是:
>>> page.objects.filter(pagetitle = "Detailed findings", doc=a)
[]
>>> page.objects.filter(pagetitle = "Detailed findings ", doc=a)
[<page: o-0235931>]
谢谢。
现在正在工作
>>> page.objects.filter(pagetitle__contains="Detailed findings", doc=a)
[<page: o-0235931>]
>>> page.objects.filter(pagetitle__contains="detailed findings", doc=a)
[]
>>> page.objects.filter(pagetitle__icontains="detailed findings", doc=a)
[<page: o-0235931>]