,column <columnname>的类型为jsonb,但表达式的类型为text []

时间:2016-11-14 12:51:24

标签: arrays postgresql jsonb pg-promise

如下所示,需要保存在JSONB列中:

[{"FoodType":"veg","pref":"High"}
,{"FoodType":"sea food","pref":"Medium"}
,{"FoodType":"Chicken","pref":"Low"}]

我只是传递req.body对象(来自Express)以插入到DB。

db.one('insert into foodies(FoodieName, FoodPref,country,languagePref)' +
'values(${FoodieName}, $[FoodPref], ${country} ,${languagePref})  RETURNING FoodieId',req.body)

** PG DB通过pg-promise库引发错误:

{ [error: column "foodpref" is of type jsonb but expression is of type text[]]
name: 'error',
length: 196,
severity: 'ERROR',
code: '42804',
detail: undefined,
hint: 'You will need to rewrite or cast the expression.',
position: '123',
internalPosition: undefined,
internalQuery: undefined,
where: undefined,
schema: undefined,
table: undefined,
column: undefined,
dataType: undefined,
constraint: undefined,
file: 'parse_target.c',
line: '529',
routine: 'transformAssignedExpr' }
POST /api/member 500 638.510 ms - 57

我认为它的驱动程序问题cos数组:format.js中的函数(arr)[在pg-promise lib中]返回字符串并且postgres不能消化它。如果数组嵌套在任何对象中,那么它可以平滑地工作,例如

"MyPref" : {Same Object array as above}

这里MyPref通过列&#34; FoodPref&#34;没有任何问题。

1 个答案:

答案 0 :(得分:-1)

  

如果数组嵌套在任何对象中,那么它可以顺利运行

它指出您没有正确传递格式数据。您将传入一组内部对象,而不是将JSONB的数据作为数组传递。

如果你把它作为一个对象属性传递,它就像你说的那样工作。要将其作为数组内的参数传递,您需要在数组内传递

var data = [{"FoodType":"veg","pref":"High"}
,{"FoodType":"sea food","pref":"Medium"}
,{"FoodType":"Chicken","pref":"Low"}]

query('bla-bla $1', [data])

即。你的问题是你将它传递给:

query('bla-bla $1', data)

错误解释数组 - JSONB数据作为值数组 - 参数。