全部博文(2065)
分类: Python/Ruby
2009-09-26 21:19:01
but get tries to return one, and only one, object. (If no objects match your query, or if more than one object
matches, it will raise an exception.)
说白了一点:如果get操作可能会导致出来异常原因
get只能返回一条记录集多了或没有就有异常
而filter 相当于是 where条件性查询了!
我刚才在命令行进行调试发现了一个新的区别点!
对象.objects.get()
不能使用len 取长度的!
而如果是使用filter 的话就能够使用len 取长度的!