force 设置为true 时,不进行物理删除,只是软删除 model.destroy( { where:{ id:this.ctx.params.id }}, { force: true } ) 恢复所有软删除数据 model.restore() 恢复指定ID数据 model.restore( { where: { id: 2 } } )
model.destroy( { where:{ id:this.ctx.params.id }}, { force: true } )
model.restore()
model.restore( { where: { id: 2 } } )