doubleyou1001 2017-05-30 17:46
浏览 364
已采纳

在laravel雄辩的采摘与原始concat奇怪的行为

I had the following ORM which was working

$timezones = DB::table('timezones')->pluck(DB::Raw('concat_ws(" ",label,name) as name'), 'id');

I converted it to

$timezones = Timezone::pluck(DB::Raw('concat_ws(" ",label,name) as name'), 'id');

and got the error like below

ErrorException in Str.php line 432:
Illegal offset type in isset or empty

Model is pretty simple like below

class Timezone extends Model
{

     protected $table = 'timezones';
     protected $connection = 'mysql';

}
  • 写回答

2条回答 默认 最新

  • dqu94359 2017-05-30 19:14
    关注

    I think, Your raw query inside pluck refers to an object. So, when to try to get an element with index as object error has been displayed.

    You should change your query to something like this:

    $timezones = Timezone::select(DB::Raw('concat_ws(" ",label,name) as name'), 'id')->pluck('name','id');
    

    This will work. Hope it will help

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部