关于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回答

小俊001

2020-03-18

同学您好,您的问题前面有一位同学详细的询问过老师,您可以参考一下。

https://coding.imooc.com/learn/questiondetail/159787.html

https://coding.imooc.com/learn/questiondetail/160794.html


0
1
qq_醒梦_0
谢谢 https://coding.imooc.com/learn/questiondetail/160794.html 有用
2020-03-18
共1条回复

Vue Element+Node.js开发企业通用管理后台系统

基于Element的中后台课程,一套中小型企业通用的后台管理系统

2829 学习 · 1714 问题

查看课程