2

我的 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()"

4

1 回答 1

0

如果您要传递用户 ID,请将 Auth::user 更改为 User::find

public function categoryUserapi (Request $request)
{


  $user = User::find($request->user_id);
  $user->categories()->attach($request->input('category_id'));

  return response(['user'=> $user]);
}
于 2019-12-11T01:21:42.377 回答