0
「すべての変数および代替物をチェックする必要がないようにPGPGノードJS
const pg = require('pg');
a = a? a: null // hope to remove this line
b = b? b: null // hope to remove this line
c = c? c: null // hope to remove this line
client.query('INSERT INTO abc(a,b,c) VALUES($1,$2,$3)', [a,b,c], function(err, result) {
//do something here
})
を使用してNULLとして定義されていない変数を挿入するより良い方法はあります"の前に定義されていません
コードには、「ヌル」はまったく使用されません。空の文字列はnullではありません。 – nnnnnn
このコードは数字「0」とブール「false」を「 ''」で置き換えることに気付いていますか? –
あなたは3行を削除したい場合は、これは動作しますか? '[a || null、b || null、c || null] ' –