編寫Python指令碼把sqlAlchemy對象轉換成dict的教程

來源:互聯網
上載者:User
在用sqlAlchemy寫web應用的時候,經常會用json進行通訊,跟json最接近的對象就是dict,有時候操作dict也會比操作ORM對象更為方便,畢竟不用管資料庫session的狀態了。

假設資料庫裡有一張post表,其中一種方法就是

p = session.query(Post).first()p.__dict__

但由於p是sqlAlchemy的對象,所以p.__dict__中會有一些其他的屬性比如_sa_instance這種我們不需要關注的

那麼我們可以給model的基類加一個方法,假設models.py中原來是這樣

Base = sqlalchemy.ext.declarative.declarative_base()class Post(Base):  __tablename__ = 'post'  id = Column(Integer, primary_key=True)  title = Column(String)

那麼我們可以加一個to_dict()方法到Base類中

def to_dict(self):  return {c.name: getattr(self, c.name, None) for c in self.__table__.columns}Base.to_dict = to_dict

這樣就可以

p = session.query(Post).first()p.to_dict()

當然,如果model沒有和table綁定的話model裡是沒有__table__的資訊的,可能也會出問題,不過我目前覺得這樣最方便了

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.