我的 laravel 应用程序中有很多对多的关系设置
在我的User Model
,我已经建立了我的关系
public function categories()
{
return $this->belongsToMany(Category::class)->withTimestamps();
}
在我的“类别模型”中,我已经建立了我的关系
public function users()
{
return $this->belongsToMany(User::class)->withTimestamps();
}
在pivot
名为categoryuser
我的表中,我有这个表模式
public function up()
{
Schema::create('category_user', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('category_id')->unsigned();
$table->integer('user_id')->unsigned();
$table->timestamps();
});
}
我正在尝试使用此方法添加以保存到我的数据透视表
public function categoryUserapi (Request $request)
{
$validatedData = $request->validate([
'category_id' => 'required|array|min:3',
'category_id.*' => 'integer',
]);
$user = Auth::user();
$user->categories()->attach($request->input('category_id'));
return response(['user'=> $user]);
}
但它不起作用,我不知道我做错了什么
在我的 api.php 中,我有这个
Route::post('/onboardcategory', 'OnboardsController@categoryUserapi');
更新
它返回错误"message": "在 null 上调用成员函数 categories()"