"日期選擇器在Livewire更新時重置"
P粉696146205
2023-08-25 21:12:55
<p>我有一個非常簡單的Livewire元件,其中包含一個文字欄位和一個日期選擇器:</p>
<pre class="brush:html;toolbar:false;"><!-- test.blade.php -->
<div>
<input type="text" wire:model="test" placeholder="測試">
<input datepicker="" wire:model="start" datepicker-format="dd.mm.yyyy" type="text" placeholder=" ...">>>
</div>
</pre>
<pre class="brush:php;toolbar:false;">/* Test.php */
class Test extends Component
{
public $test;
public $start;
public function mount()
{
$this->start = now()->format('d.m.Y');
}
public function render()
{
return view('livewire.test');
}
}
</pre>
<p>我使用的日期選擇器是Flowbite Datepicker。 </p>
<p>當我更改日期然後更改測試輸入欄位時,日期選擇器會重置為今天的日期。 </p>
<p>我需要做什麼來保持start的值? </p>
<p><strong>我已經嘗試過什麼? </strong>
我嘗試在日期選擇器上使用wire:ignore,但這沒有幫助。 </p>
我在這裡做了一些調試,發現在日期選擇器的程式碼中,我們可以使用「changeDate」事件來將其與Livewire連接起來。不知道為什麼這一點沒有被記錄下來。 以下是程式碼:
元件視圖:
元件:
以及包含Livewire元件的HTML程式碼,以及監聽Flowbite日期選擇器事件並在此之後觸發Livewire事件的js程式碼。
在我的環境中按預期工作。 乾杯