AgensGraph的结果上有引号。
我不想要
function preload(){
var datav = loadJSON('https://wrapapi.com/use/example/example/example/latest?wrapAPIKey=API_KEY');
categoria = datav.data.vox[1].category;
idvox = datav.data.vox[1].idvox;
dataC = loadJSON('https://wrapapi.com/use/example/example/example/0.0.5?categoria='+categoria+'&idvox='+idvox+'&wrapAPIKey=API_KEY');
}
我希望使用函数或过程来修剪引号。
答案 0 :(得分:0)
您可以使用函数“ btrim”删除不必要的引号。
agens=# select btrim( n.value::text, '"' ) from ( match (n) return n.value ) as n;
btrim
-------
test
(1 row)
您必须在查询的SQL部分使用修剪来删除引号。