Database chain operation [10. Template paging example]
//Error
$right = $list->toArray();
//Correct
$right = $list->toArray()["data"];
查无此人2020-02-13 17:13:43
$right = $list->toArray();
I’ve seen this and it’s no problem. No need to add another layer of ["data"];
Error, please send a screenshot for me to take a look at.