PostgreSQL配置CRUD 操作PostgreSQLThinkJS 支持 PostgreSQL,底层使用 pg 模块。 配置使用 PostgreSQL,需要将模型中的配置 type 改为 postgresql,修改配置文件 src/common/config/db.js: export default { type: 'postgresql', adapter: { postgresql: { } }} CRUD 操作CRUD 操作和 Mysql 相同,具体请见 模型 -> 介绍。 原文: https://thinkjs.org/zh-cn/doc/2.1/model_postgre.html