V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
args
V2EX  ›  Python

像django的orm里定义model 时field的顺序是怎么保证的呢?

  •  
  •   args ·
    pendulm · 2011-11-12 10:51:37 +08:00 · 5172 次点击
    这是一个创建于 4520 天前的主题,其中的信息可能已经有所发展或是发生改变。
    类似这样

    class Person(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)


    按理说这样定义的属性都会到Person的 __dict__ 对象里,这是一个字典,顺序完全没有保证的啊。不知道顺序的话,后面的插入之类的sql语句怎么实现?

    有研究过的人进来说一说嘛~
    3 条回复    1970-01-01 08:00:00 +08:00
    dreamersdw
        1
    dreamersdw  
       2011-11-12 10:58:46 +08:00
    INSERT INTO Persons (last_name, first_name) VALUES ('Tom', 'Wilson')
    iiduce
        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
    kaiix
        3
    kaiix  
       2011-11-12 11:39:20 +08:00
    sorteddict python的dict是不保序的 所以django用了一个list来保存顺序 见django.utils.datastructure
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1376 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 17:40 · PVG 01:40 · LAX 10:40 · JFK 13:40
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.