gpt4 book ai didi

php - laravel 通过标签获取相关帖子

转载 作者:行者123 更新时间:2023-12-04 14:34:26 25 4
gpt4 key购买 nike

我想通过标签获取当前帖子的相关帖子,但老实说我无法获取。

我将向您展示我的表格结构。

帖子表:

public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->string('title');
$table->string('slug')->unique();
$table->text('body');
$table->text('excerpt')->nullable();
$table->string('stickers')->nullable();
$table->integer('category_id')->nullable()->unsigned();
$table->text('meta_description')->nullable();
$table->text('meta_keywords')->nullable();
$table->string('postimg')->nullable();
$table->string('type')->nullable()->default('common');
$table->boolean('published')->default(false);
$table->softDeletes();
$table->timestamps();
});
}

标签表:
public function up()
{
Schema::create('tags', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->unique();
$table->string('slug')->unique();
$table->softDeletes();
$table->timestamps();
});
}

我有一个数据透视表来处理带有这些标签的帖子和帖子上的标签。

post_tag 表:
public function up()
{
Schema::create('post_tag', function (Blueprint $table) {
$table->increments('id');
$table->integer('post_id')->unsigned();
$table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade');

$table->integer('tag_id')->unsigned();
$table->foreign('tag_id')->references('id')->on('tags')->onDelete('cascade');
});
}

一切都很好,一个标签有很多帖子,一个帖子有很多标签,是多对多的关系。

岗位型号:
public function tags()
{
return $this->belongsToMany('App\Tag');
}

标签型号:
public function posts()
{
return $this->belongsToMany('App\Post');
}

我可以在帖子上显示所有标签,但我想按标签显示相关帖子,当我说相关帖子时,我的意思是访问者正在阅读的“当前帖子”。假设当前这篇文章有微软、谷歌、苹果、汽车标签,我想要这些标签的相关帖子。我不知道这是否可能或者更容易按类别进行。

新闻 Controller 逻辑:

这是我拥有帖 subview 的所有逻辑的地方。
public function getSingle($slug, $id = null)
{
$post = Post::where('slug', '=', $slug)->first();
$topcat = Category::orderBy('created_at', 'desc')->limit(5)->get();
$comment = Comment::find($id);

$tags = Tag::all();
$tags2 = array();
foreach ($tags as $tag) {
$tags2[$tag->id] = $tag->name;
}

// Previous and Next Post
$previous = Post::where('id', '<', $post->id)->orderBy('id', 'desc')->first();
$next = Post::where('id', '>', $post->id)->orderBy('id', 'asc')->first();

// Related Posts Here!

$tags3 = array();
foreach ($post->tags as $tag) {
$tags3[$tag->id] = $tag->name;
}
$related = Post::whereHas('tags', function ($query) use ($tags3) {
$query->where('name', $tags3);
})->get();
// dd($related);

return view('news.single')
->withPost($post)
->withTopcat($topcat)
->withTags($tags2)
->withComment($comment)
->withPrevious($previous)
->withNext($next)
->withRelated($related);
}

我做了 $tags3变量以这种方式测试它,但我没有得到我想要的。

提前致谢

最佳答案

这应该有效:

$post = Post::where('slug', '=', $slug)->first();

$related = Post::whereHas('tags', function ($q) use ($post) {
return $q->whereIn('name', $post->tags->pluck('name'));
})
->where('id', '!=', $post->id) // So you won't fetch same post
->get();
$post->tags->pluck('name') line 创建一个包含所有标签名称(属于帖子)的数组。

关于php - laravel 通过标签获取相关帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50322111/

25 4 0