这应该返回大约五个位置的列表。它没有返回任何错误。我已经使用 mysql 工作台测试了 sql。它返回数据就好了。现在我正在编写后端,所以我不关心使用视图或数据提供者。我只是确保我的后端功能正常工作。考虑到这一点,您将如何返回 findAllBySql 检索到的数据?
class CashLogic
{
public function AllLocations()
{
$model = new Locations;
$allLocations = $model->findAllBySql("SELECT name from locations");
return $allLocations;
}
}
class SiteController extends Controller
{
public function actionIndex()
{
$model = new CashLogic;
$data = $model->AllLocations();
return $data;
}
}