qoute内的Javascript变量(单个qoute内的double值)

时间:2018-06-23 02:21:31

标签: javascript node.js

我正在尝试在nodejs中使用一个变量。无论尝试如何,它都会给我带来错误。 如何在此字符串中使用变量

 let txt= 'some unknown texts'
 "MATCH (productName) AGAINST ('txt')"

在这里我需要替换txt。

注意:我不能使用``

修改 这是我正在使用的查询

await Product.query().whereRaw("MATCH (productName) AGAINST ('txt')").select('productName')

谢谢。

1 个答案:

答案 0 :(得分:1)

在ES6中,您需要执行以下操作才能在字符串中使用var

`MATCH (productName) AGAINST ${txt}`

如果您不能使用``

只要采用字符串连接的旧方法,

"MATCH (productName) AGAINST '" +txt + "'"