使用livewire更新变更?

时间:2020-09-02 23:17:04

标签: php laravel laravel-livewire

我有qty的此输入类型编号:

enter image description here

html代码:

<span class="qty-btn minus-btn" onclick="this.parentNode.querySelector('input[type=number]').stepDown()">
    <i class="fal fa-minus-circle"></i>
</span>

<input
    wire:model.lazy="quantity"
    wire:change="updateQuantity({{ $product->id }})"
    type="number"
    class="input-text qty text"
    title="Qty" inputmode="numeric"
    step="1" min="1" max="" lang="en"
>

<span class="qty-btn plus-btn" onclick="this.parentNode.querySelector('input[type=number]').stepUp()">
    <i class="fal fa-plus-circle"></i>
</span>

当我单击任何按钮stepDownstepUp时,我需要更新qty

我的Livewire竞争对手:

class CartQtySection extends Component
{
    public $product;
    public $quantity;

    public function mount($product)
    {
        $this->product = $product;
        $this->quantity = $product->pivot->quantity;
    }

    public function updateQuantity($id)
    {
        user()->cart()->updateExistingPivot($id, [
        'quantity' => $this->quantity,
        ]);

        $this->emit('quantityUpdated');
    }
}

1 个答案:

答案 0 :(得分:0)

尝试wire:click

<span class="qty-btn minus-btn" wire:click="stepDown({{ $product->id }})">
    <i class="fal fa-minus-circle"></i>
</span>


<span class="qty-btn plus-btn" wire:click="stepUp({{ $product->id }})">
    <i class="fal fa-plus-circle"></i>
</span>

在组件中

<?php

class CartQtySection extends Component
{
    public $product;
    public $quantity;

    public function mount($product)
    {
        $this->product = $product;
        $this->quantity = $product->pivot->quantity;
    }

    public function updateQuantity($id)
    {
        user()->cart()->updateExistingPivot($id, [
            'quantity' => $this->quantity,
        ]);

        $this->emit('quantityUpdated');
    }

    public function stepDown($id)
    {
        $this->quantity++;
        $this->updateQuantity($id)
    }
    public function stepUp($id)
    {
        $this->quantity--;
        $this->updateQuantity($id)
    }
}