作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在Django过滤器语句中,如果我写,有什么区别:
.filter(name__exact='Alex')
.filter(name='Alex')
最佳答案
没有区别,第二个暗示使用__exact。
从documentation:
For example, the following two statements are equivalent:
>>> Blog.objects.get(id__exact=14) # Explicit form
>>> Blog.objects.get(id=14)
# __exact is implied This is for convenience, because exact
# lookups are the common case.
关于django - 在Django过滤器语句中,__exact和等号(=)有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9963200/
我遇到了问题,我既不能理解也不能“谷歌”,同时遵循“实用 Django 项目”一书中的步骤。 下面的 View 代码示例应该返回特定的 Entry 对象(我省略了不必要的部分),但它引发了“DoesN
我是一名优秀的程序员,十分优秀!