关于removeBook()方法的问题
来源:13-11 电子书删除功能开发
qq_醒梦_0
2020-03-17
async function removeBook(book) {
// 避免连续上传同一本电子书
if(book) {
book.reset()
if(book.filename) {
const removeBookSql = delete from book where fileName='${book.filename}'
const removeContentsSql = delete from contents where fileName='${book.filename}'
await db.querySql(removeBookSql)
await db.querySql(removeContentsSql)
}
}
}
想问下为什么要执行下面两条删除的sql语句。filename不是唯一的吗,不会存在重复的filename。同时并没有作为主键插入contents 表中
写回答
1回答
-
同学您好,您的问题前面有一位同学详细的询问过老师,您可以参考一下。
https://coding.imooc.com/learn/questiondetail/159787.html
https://coding.imooc.com/learn/questiondetail/160794.html
012020-03-18
相似问题