0
我正試圖用postgresql中的json列與flask-sqlalchemy
查詢。 這裏是我的代碼無法用sqlachemy查詢json列
house_ = House()
results = house_.query.filter(
House.information['branch_name'].astext == 'release0'
).all()
我不知道什麼是錯的。 我試圖使用.cast(Unicode)
而不是astext
。
獲得如下錯誤:
NotImplementedError: Operator 'getitem' is not supported on this expression
請發佈[MCVE](http://stackoverflow.com/help/mcve) – RazerM