V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
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 · Nov 12, 2011 · 6302 views
    This topic created in 5283 days ago, the information mentioned may be changed or developed.
    类似这样

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


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

    有研究过的人进来说一说嘛~
    3 replies    1970-01-01 08:00:00 +08:00
    dreamersdw
        1
    dreamersdw  
       Nov 12, 2011
    INSERT INTO Persons (last_name, first_name) VALUES ('Tom', 'Wilson')
    iiduce
        2
    iiduce  
       Nov 12, 2011
    The dict is a sorteddict,which presents the items in the order they are added.

    https://code.djangoproject.com/wiki/SortedDict
    kaiix
        3
    kaiix  
       Nov 12, 2011
    sorteddict python的dict是不保序的 所以django用了一个list来保存顺序 见django.utils.datastructure
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5131 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 50ms · UTC 09:08 · PVG 17:08 · LAX 02:08 · JFK 05:08
    ♥ Do have faith in what you're doing.