1
dreamersdw 2011-11-12 10:58:46 +08:00
INSERT INTO Persons (last_name, first_name) VALUES ('Tom', 'Wilson')
|
2
iiduce 2011-11-12 11:16:58 +08:00
The dict is a sorteddict,which presents the items in the order they are added.
https://code.djangoproject.com/wiki/SortedDict |
3
kaiix 2011-11-12 11:39:20 +08:00
sorteddict python的dict是不保序的 所以django用了一个list来保存顺序 见django.utils.datastructure
|