gpt4 book ai didi

sql - 将字符串数组存储在 typeorm postgres 数据库中

转载 作者:行者123 更新时间:2023-12-05 08:37:49 37 4
gpt4 key购买 nike

我想在我的 Postgres 数据库中存储一个字符串数组,我有下面的代码,但它没有按我想要的那样工作:

  @Column({type: 'text', array: true, nullable: true })
names: string[] = [];

我收到以下错误:

PostgreSQL said: malformed array literal: "["james"]"
Detail: "[" must introduce explicitly-specified array dimensions.

我可能做错了什么吗?

最佳答案

我可以用

解决这个问题
  @Column('simple-array', { nullable: true })
city: string[];

关于sql - 将字符串数组存储在 typeorm postgres 数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64293388/

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