y:to substitute this match n:to skip this match a:to substitute this and all remaining matches q:to quit the command l:to substitute this match and quit (think of "last") ^E:to scroll the screen up by holding the Ctrl key and pressing E ^Y:to sc…
Model中的F F 的操作通常的应用场景在于:公司对于每个员工,都涨500的工资.这个时候F就可以作为查询条件 from django.db.models import F models.UserInfo.objects.filter().update(salary=F('salary')+500) # F('salary')就表示salary在这行记录中的值. F的使用场景基本就是这样,比较简单. Model中的Q Q 的操作通常的应用场景在于:构造搜索条件. 普通filter搜索条件支持三…
在linux下用vi或vim打开Test.java文件时 [root@localhost tmp]# vi Test.java出现了如下信息: E325: ATTENTION Found a swap file by the name ".Test.java.swp" owned by: root dated: Wed Dec 7 13:52:56 2011 file name: /var/tmp/Test.java …