gpt4 book ai didi

python - peewee.OperationalError : no such function: json

转载 作者:行者123 更新时间:2023-12-04 09:11:38 28 4
gpt4 key购买 nike

Python 版本:3.8.3
Peewee 版本:3.13.3
我想创建一个包含 JSONField 的对象,

db = SqliteExtDatabase('../db.sqlite', pragmas=(('journal_mode', 'wal'), ('foreign_keys', 1)))

class Msg(BaseModel):
id = AutoField()
detail = JSONField()

def insert_msg(detail: dict):
msg = Msg.create(detail=detail)
msg.save()
但是当我调用方法 insert_msg({"name":"abc"}) 时,会出现错误
peewee.OperationalError: no such function: json

最佳答案

您需要安装 sqlite json1 扩展。以下是一些可能有帮助的链接:

  • http://charlesleifer.com/blog/compiling-sqlite-for-use-with-python-applications/
  • https://sqlite.org/json1.html
  • https://github.com/coleifer/pysqlite3 (pip install pysqlite3-binary 用于带有 json ext 的预编译/静态链接的 pysqlite)
  • 关于python - peewee.OperationalError : no such function: json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63338195/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com