我想在我的Postgres数据库中存储一个字符串数组,我有下面的代码,但它不是我想要的工作:
@Column({type: 'text', array: true, nullable: true })
names: string[] = [];
出现以下错误:
PostgreSQL said: malformed array literal: "["james"]"
Detail: "[" must introduce explicitly-specified array dimensions.
我做错什么了吗?
2条答案
按热度按时间llmtgqce1#
我可以用
qyzbxkaa2#
这应该适用于阵列。