const books3 = await Book3.find({}).exec()
for(const item of books3) {
const d = JSON.parse(JSON.stringify(item))
delete d.id
await new Book(d).save()
}
// 把book3中的表插入到book中
// 把原來的表數(shù)據(jù)遍歷一下,刪除ID,然后插入數(shù)據(jù)
本文摘自 :https://www.cnblogs.com/