Laravel DB首先选择:响应内容必须是字符串

时间:2015-06-17 11:49:45

标签: php mysql laravel-5

我使用Laravel并且我使用DB对象如果我选择以下语句我得到错误:响应内容必须是实现__toString()的字符串或对象,"对象"给出。

return DB::table('todos')->where("title","your List")->first();

如果我选择以下语句,则可以使用:

return DB::table('todos')->where("title","your List")->get();

你知道第一份判决有什么问题吗?

1 个答案:

答案 0 :(得分:0)

我已经尝试了,而且我也得到了同样的结果。要仔细研究一下。执行以下操作:

return DB::table('todos')->where("title","your List")->take(1)->get()

你现在好了。