我希望不同故事的收藏夹按钮能够正常工作

时间:2018-12-28 20:22:25

标签: php database laravel if-statement

我在PHP Laravel项目中遇到问题。 我有一个喜欢的故事按钮。不同的用户可以选择使喜欢的故事成为最喜欢的故事。 “故事”和“收藏夹故事”具有单独的表。我已经基于user_id从story表中获取了所有故事,并从“ fav_story”表中获取了fav_story。

这是我的控制器代码

public function fanfiction(){
    $user_id = session('userid');
    $data['stories'] = DB::Table('stories')->orderBy('story_id', 'des')->get();
    $data['fav_story'] = DB::Table('favorite_story')->where('user_id', $user_id)->get();
    return view('fanfiction', $data);
}

这是我的查看代码

@foreach($stories as $row)
    <?php $story_id = $row->story_id; ?>
    <article class="post excerpt">
        <a href="{{ url('read_fanfic/'.$row->story_id) }}" id="featured-thumbnail">
            <div class="featured-thumbnail">
                @if($row->img == '')
                <img class="img-responsive" width="30%" src="{{ url('public/uploads/fanfic/no_img.png') }}" alt="Story Image" />
                @else
                <img class="img-responsive"  width="30%" src="{{ url('public/uploads/fanfic/'.$row->img) }}" alt="Story Image" />
                @endif
            </div>                      
        </a>
        <div class="post-content" style="text-align:justify;">
            {{ $row->story_desc }};
            <h3>{{ $row->story_title }}</h3>
        </div>

        <div class="readMore">
            @if(Session('username'))
                @foreach($fav_story as $row1)
                    @if($row1->story_id == $story_id)
                    <a href="{{ url('member/fav_story/'.$row->story_id) }}" style="background:#59AAE1;" > Unfavorite</a>
                    @elseif($story_id)
                        <a href="{{ url('member/fav_story/'.$row->story_id) }}" style="background:#1dbf73;" > Favorite</a>
                    @endif
                @endforeach
            @endif
        </div>
    </article>
@endforeach

标记为喜欢的故事的故事将显示带有该特定故事的不喜欢的按钮,再次单击该按钮将使其成为喜欢的按钮。问题是,它同时显示具有特定故事的“收藏夹”和“收藏夹”按钮,而没有显示“收藏夹”按钮,需要使该按钮成为收藏夹。

1 个答案:

答案 0 :(得分:0)

尝试

在控制器中修改查询:

// this will store all story ids in an array
$data['fav_story'] = DB::table('favorite_story')->where('user_id', $user_id)->pluck('story_id');

您的刀片视图

...
<div class="readMore">
    @if(Session('username'))
       @if(in_array($row->story_id, $fav_story))
           <a href="{{ url('member/fav_story/'.$row->story_id) }}" style="background:#59AAE1;" > Unfavorite</a>
       @else
           <a href="{{ url('member/fav_story/'.$row->story_id) }}" style="background:#1dbf73;" > Favorite</a>
       @endif
    @endif
</div>
...

编辑

$row->id更新为$row->story_id