Я использую шаблоны с тегами для создания запроса с его параметрами.
function query (strings, ...args) {
return {
sql: strings.join('?'),
params: args
}
}
const storeId = '417-123';
const id = 10;
const res = query`select * from trad.customers where store_id = ${ storeId } and customer_id = ${ id }`;
// res.sql: select * from trad.customers where store_id = ? and customer_id = ?;
// res.params: [ '417-123', 10 ];
Иногда мне нужно передать в запрос переменную, которую нельзя передать как параметр SQL (например, имя таблицы). Я застрял с этим ...
const nim = '0850204';
const id = 143;
const res = query`select * from _${ nim }_ tickets where tick_id = ${ id }`;
// what I get:
// res.sql: select * from _?_ tickets where tick_id = ?;
// res.params: [ '0850204', 143 ];
// what I'd like
// res.sql: select * from _0850204_ tickets where tick_id = ?;
// res.params: [ 143 ];
Как я могу обойти это?
Спасибо за вашу помощь :)
РЕДАКТИРОВАТЬ:
Я использовал специальный символ в качестве флага, чтобы указать, когда следует заменить переменную напрямую ... Таким образом, когда символ #
найден, я заменяю непосредственно следующее значение. Я почти уверен, что у нас получится лучше, но я не знаю, как ...
function query (strings, ...args) {
const del = [];
const replace = [];
let sql = strings
.map((data, index) => {
if (data.endsWith('#') === false) return data;
replace.push(args[index]);
del.push(index);
return data;
})
.join('?');
args = args.filter((d, index) => del.includes(index) === false);
let n = 0;
while (sql.includes('#?')) {
sql = sql.replace('#?', replace[n]);
}
return { sql, params: args };
}
const nim = '0850204';
const id = 143;
// Notice the '#'
const res = query`select * from _#${ nim }_ tickets where tick_id = ${ id }`;
// res.sql: select * from _0850204_ tickets where tick_id = ?;
// res.params: [ 143 ];