Does tp5 come with soft deletion problem?
KevinQ
KevinQ 2018-02-01 16:36:23
0
2
1590

As long as use SoftDelete; is written in the model, the data cannot be queried in pages. How is this going? ? ? ? ?

Waiting online........................


KevinQ
KevinQ

God helps those who help themselves.

reply all(1)
猪哥

Soft deletion and real deletion

$user = model('User');
$user::destroy(1);   // 软删除$user::destroy(1,true);   // 真实删除$user->delete();     // 软删除$user->delete(true);  // 真实删除

By default, the query data does not include soft deleted data. If it needs to be included, query like this:

$user = model('User');$data = $user::withTrashed()->select();

If you only query soft deleted data, use this:

$user = model('User');$data = $user::onlyTrashed()->select();


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template