Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果你使用sequelize作为你的 ORM 和 postgres 数据库,你可能会看到这个错误代码,尤其是对于初学者,包括我。从这个讨论中发现了问题。只需使用 5432(默认 postgres 端口)定义“端口”属性即可解决问题。
var orm = new sequelize('database', 'user', 'password', { 方言:'postgres', 主机:'本地主机', port: '5432' /* 定义数据库端口 */ });