gpt4 book ai didi

php - Illuminate\Database\Eloquent\Builder 类的对象无法转换为字符串

转载 作者:行者123 更新时间:2023-12-01 22:11:26 24 4
gpt4 key购买 nike

我有这个代码。一切正常 - 它从数据库获取数据,但无法返回我。我使用 jQuery 发布它。

Route::post('get/images', function(){
$images = App\Images::where('realisation_id',Request::get('id'));
return $images;
});

它返回

Object of class Illuminate\Database\Eloquent\Builder could not be converted to string

最佳答案

我傻了!

Route::post('get/images', function(){
$images = App\Images::where('realisation_id',Request::get('id'))->get();
return $images->toJson();
});

一切都很酷!

关于php - Illuminate\Database\Eloquent\Builder 类的对象无法转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35198127/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com