我在这里有这个功能:
public function move() {
$prefs = DB::table('users')->select('id', 'Preferences')->where('Preferences', '!=', '')->get();
foreach ($prefs as $pref) {
$tags = $pref->Preferences;
$tag = explode(',', $tags);
foreach ($tag as $t) {
$new = DB::table('prefs')->select('id', 'tag')->where('tag', '=', $t)->get();
$taguser = new Tag(array(
'user_id' => $pref->id,
'tag_id' => $t,
'tagsid' => $new->id
));
$taguser->save(); //save in table
}
}
return view('refactor');
}
它基本上只是从未正确设置的旧数据库表中获取数据,拆分数据,将其与另一个表中的首选项列表进行比较并获取该数据ID,然后打印标记,用户标识,以及偏好标识到数据透视表中。
或者那是它应该做的。现在它告诉我来自prefs表的id是未定义的。最后一点'tagsid' => $new->id
< =显然不存在。
但它应该。我做错了什么?
这是错误的一部分:
Undefined property: Illuminate\Support\Collection::$id
at HandleExceptions->handleError('8', 'Undefined property: Illuminate\Support\Collection::$id', 'C:\xampp\htdocs\Missionseek2\app\Http\Controllers\RefactorController.php', '29', array('prefs' => object(Collection), 'pref' => object(stdClass), 'tags' => '1-3,1-5,1-4,2-3,3-2,3-9,3-3,3-4,3A-5,3A-8,5-2,8-4,8-8,8-13,9-5,7A-2,7A-4,7A-10', 'tag' => array('1-3', '1-5', '1-4', '2-3', '3-2', '3-9', '3-3', '3-4', '3A-5', '3A-8', '5-2', '8-4', '8-8', '8-13', '9-5', '7A-2', '7A-4', '7A-10'), 't' => '1-3', 'new' => object(Collection))) in RefactorController.php line 29
答案 0 :(得分:2)
当您执行->get()
时,它会返回Collection
个对象。您将需要迭代它以获取基础模型。
我认为您需要使用->first()
来获取第一个匹配结果,它会返回模型本身,因此您可以访问->id
字段。
简而言之,请更改此行:
$new = DB::table('prefs')->select('id', 'tag')->where('tag', '=', $t)->get();
为:
$new = DB::table('prefs')
->select('id', 'tag')
->where('tag', $t)
->first();