laravel livewire,如何通过单击将ID或数据传递到另一个组件

时间:2020-03-12 09:06:27

标签: laravel laravel-livewire

我有两个部分Posts和Post,Posts显示帖子,通过单击图像,我想在另一个组件中显示单击的帖子的数据。

在下面发布课程和组件:

组件视图:


<div class="post" x-data="{open:false}">
  @foreach($posts as $post)
    <div>
      <h1>{{ $post->name }}</h1>
      <h3>{{ $post->body }}</h3>
      <img @click="open = !open" wire:click="showPost({{ $post->id }})" src="{{ $post->image }}" alt="">
    </div>
  @endforeach


<livewireL:post>

    </div>

组件类:

class Posts extends Component
{


  public $posts, $post;

  public function mount(){
    $this->posts = Post::all();

  }


  public function showPost($id){
    $post = Post::find($id);
    $this->post = $post;
  }

    public function render()
    {
        return view('livewire.posts');
    }
}

这是 Post组件和类,我想显示该组件中单击的数据,我尝试过$ emit,许多作为文档,但没有结果。

我要呈现该数据的组件视图:


<div x-show="open">
  <h1>{{ $post->name }}</h1>
  <h3>{{ $post->body }}</h3>
  <img src="{{ $post->image }}">
</div>

我要传递数据的类:

class Post extends Component
{

  public $post;



  public function mount($id)
  {
    $this->post = \App\Post::find($id);
  }



    public function render()
    {
        return view('livewire.post');
    }
}

1 个答案:

答案 0 :(得分:5)

您必须使用事件将数据从一个组件传递到另一组件,如下所示。

组件A刀片:

  <img @click="open = !open" wire:click="showPost({{ $post->id }})" src="{{ $post->image }}" alt="">

A类组件:

public function showPost($id){
    $post = Post::find($id);
    $this->post = $post;
    $this->emit('newPost', $post->id);
  }

您现在可以从其他livewire组件捕获该事件,如下所示:

组件B类:

class Post extends Component
{

  public $post;

  protected $listeners = ['newPost'];

  public function mount($id)
  {
    $this->post = \App\Post::find($id);
  }

   public function render()
   {
        return view('livewire.post');
   }

   public function newPost($postId)
   {
       // here u have the id in your other component. 
   }
}

您也可以通过其他方式实现。您可以从组件刀片传递ID,也可以签出this