我正在尝试在nodejs中使用一个变量。无论尝试如何,它都会给我带来错误。 如何在此字符串中使用变量
let txt= 'some unknown texts'
"MATCH (productName) AGAINST ('txt')"
在这里我需要替换txt。
注意:我不能使用``
修改 这是我正在使用的查询
await Product.query().whereRaw("MATCH (productName) AGAINST ('txt')").select('productName')
谢谢。
答案 0 :(得分:1)
在ES6中,您需要执行以下操作才能在字符串中使用var
`MATCH (productName) AGAINST ${txt}`
如果您不能使用``
只要采用字符串连接的旧方法,
"MATCH (productName) AGAINST '" +txt + "'"