chenshenhai / koa2-note

《Koa2进阶学习笔记》已完结🎄🎄🎄
https://chenshenhai.github.io/koa2-note
MIT License
5.18k stars 1.29k forks source link

Param problem in demo code #72

Open huzhenjie opened 4 years ago

huzhenjie commented 4 years ago

https://github.com/chenshenhai/koa2-note/blob/c667c4fa4b9cf31acd2b76e29a5056b69581ca65/demo/project/server/utils/db-util.js#L41

The Demo code here has something wrong.

let findDataById = function( table,  id ) {
  let  _sql =  "SELECT * FROM ?? WHERE id = ? "
  return query( _sql, [ table, id, start, end ] )
}

Solution

let findDataById = function( table,  id ) {
  let  _sql =  "SELECT * FROM ?? WHERE id = ? "
  return query( _sql, [ table, id] )
}