我使用Laravel并且我使用DB对象如果我选择以下语句我得到错误:响应内容必须是实现__toString()的字符串或对象,"对象"给出。
return DB::table('todos')->where("title","your List")->first();
如果我选择以下语句,则可以使用:
return DB::table('todos')->where("title","your List")->get();
你知道第一份判决有什么问题吗?
答案 0 :(得分:0)
我已经尝试了,而且我也得到了同样的结果。要仔细研究一下。执行以下操作:
return DB::table('todos')->where("title","your List")->take(1)->get()
你现在好了。