我在我的laravel应用程序上收到如下错误消息:
production.ERROR: exception 'ErrorException' with message 'Trying to get property of non-object' in /home/admin/web/domain.com/public_html/app/controllers/distanceController.php:1470
Stack trace:
错误参考此代码:
$distance = distanceGeoPoints($loc1min->latitude, $loc1min->longitude, $latitude, $longitude);
请告知问题是什么以及如何解决。
答案 0 :(得分:0)
$loc1min = WalkLocation::where('request_id', $request->id)->where('created_at', '<=', $one_minut_old_time)->orderBy('id', 'desc')->first();
由于某种原因,在代码中返回null。看来,数据库没有记录,符合您的条件。