nodejs参数怎么拼接sql语句

问号的地方怎么分别拼接上两个参数
constgetList=(author,keyword)=>{
letsql=`select*fromblogswhereauthor=?andkeyword=?`
}
临摹微笑
浏览 2156回答 2
2回答

Smart猫小萌

像mysql这个库,可以connection.query('SELECT*FROMusersWHEREid=?',[userId],function(error,results,fields){if(error)throwerror;//...});来实现转义和占位符的需求.其他的库也都差不多吧.

守着一只汪

使用模版语法不行吗?letsql=`select*fromblogswhereauthor=${author}andkeyword=${keyword}`
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript