我可以将数据传递给组件,但在模态中,数据为空。
这是一节课:
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>
在模式中调用之前,需要检查代码值是否已更改。您得到了null值,因为它在赋值之前被调用。
@if($code)
<p> {{ $code }} </p>
@endif
PHP7。x样式:
<p> {{ $code ?? "" }} </p>
要使其工作,您必须添加一些验证规则。使用“公共函数规则()”选项