laravel livewire数据未以模态显示

时间:2020-03-09 17:41:19

标签: laravel laravel-livewire

我可以将数据传递给组件,但是在Alpine js的模式下,数据为空。

这是课程:

public $code, $products;

    public function getData($id)
    {
        $product = Product::find($id);
        $this->code = $product->code;
    }

  public function render()
    {

        $this->products = Product::latest()->get();

        return view('livewire.cabin');
    }

这是组件:

<div x-data="{open: false}">
    <section>
if I use $code here the code value is shown !!!
<div>{{ $code }}</div>
        <div class="slideCabin">
            @foreach($products as $product)
                <div>
<img
@click="open = true"
wire:click="getData({{ $product->id }})"
src="/images/allproducts/{{ $product->cover }}"
>
                </div>
            @endforeach

        </div>


    </section>


这是模式的,由Alpine js通过单击标记打开:

    <div id="backmodal" x-show="open">
but, the code value is null:
 <p>{{ $code }}</p>
</div>

3 个答案:

答案 0 :(得分:3)

您需要在模态中调用代码之前检查代码值是否已更改。 您得到空值,因为它是在分配任何值之前被调用的。

@if($code)
<p> {{ $code }} </p>
@endif

答案 1 :(得分:0)

PHP 7.x样式:

<p> {{ $code ?? "" }} </p>

答案 2 :(得分:0)

要使其工作,您必须添加一些验证规则。 使用“公共函数规则()”选项