我具有动态字段输入,因此我可以添加更多列并将其删除。在此输入中,我有一列total_price
,关于价格,我需要price * qty。但是我不知道如何在多个输入上执行此操作。我只能在单个输入上执行此操作。我的表单和livewire是这样的:
表格
<form>
<button wire:click.prevent="add({{$i}})">
Add
</button>
<input type="hidden" wire:model="newid.0">
<input wire:model="nama_barang.0" type="text" />
<input wire:model="qtt.0" type="text" />
<input wire:model="price.0" type="text" />
<input wire:model="qty.0" type="text" />
<input wire:model="total_price" type="text" /> // here the problem
@foreach($inputs as $key => $value)
<input wire:model="nama_barang.{{ $value }}" type="text" />
<input wire:model="qtt.{{ $value }}" type="text" />
<input wire:model="price.{{ $value }}" type="text" />
<input wire:model="qty.{{ $value }}" type="text" />
<input wire:model="total_price" type="text" /> // on here i get the problem
@endforeach
<button wire:click.prevent="store()">Submit</button>
</form>
这是我的电线
public $belanja_id, $nama_barang, $qtt,$newid;
public $updateMode = false;
public $inputs = [];
public $i = 1;
public $total_price ;
public $price= [] ;
public $qty = [];
public function add($i)
{
$i = $i + 1;
$this->i = $i;
array_push($this->inputs ,$i);
}
public function mount($id)
{
$belanja = $this->belanja = Belanja::findOrFail($id);
$this->newid = $belanja->id;
$this->k_uraian = $belanja->uraian;
}
public function remove($i)
{
unset($this->inputs[$i]);
}
public function render()
{
$this->total_price =array_sum($this->price) * array_sum($this->qty) ; // i try with this but only get 1 rows , can someone help ?
return view('livewire.input-belanja-lw');
}
,您可以在此picture上看到我的表格(最好您看这张图片,以便您可以知道我的问题),我不能加上sum total_price。有人可以帮忙吗?
我的参考文献来自此网站site
UPDATE。我的输入现在是正确的,但是我的商店有e错误
我的商店功能
public function store()
{
foreach ($this->nama_barang as $key => $value) {
$bel = AnakBelanja::create([
'belanja_id' => $this->newid,
'nama_barang' => $this->nama_barang[$key],
'qtt' => $this->qtt[$key],
'price' => $this->price[$key],
'qty' => $this->qty[$key]
]);
}
$this->inputs = [];
$this->resetInputFields();
return redirect()->route('detail', $bel->belanja_id);
$this->emit('alert', ['type' => 'success', 'message' =>'Succes Melakukan Input / Update']);
}
答案 0 :(得分:0)
由于您无法执行此操作,因此我已进行了一些修复
public $belanja_id, $nama_barang, $qtt, $newid;
public $updateMode = false;
public $inputs = [
[
"newid" => "",
"nama_barang" => "",
"qtt" => "",
"price" => "",
"qty" => "",
"total_price" => "",
]
];
public function render()
{
return view('livewire.input-belanja-lw');
}
public function add()
{
array_push($this->inputs, [
"newid" => "",
"nama_barang" => "",
"qtt" => "",
"price" => "",
"qty" => "",
"total_price" => "",
]);
}
public function mount($id)
{
$belanja = $this->belanja = Belanja::findOrFail($id);
$this->newid = $belanja->id;
$this->k_uraian = $belanja->uraian;
}
public function remove($i)
{
unset($this->inputs[$i]);
}
<form>
<button wire:click.prevent="add()">
Add
</button>
@foreach($inputs as $key => $value)
<input type="hidden" wire:model="inputs.{{ $key }}.newid" value="{{ $key }}">
<input wire:model="inputs.{{ $key }}.nama_barang" type="text" />
<input wire:model="inputs.{{ $key }}.qtt" type="text" />
<input wire:model="inputs.{{ $key }}.price" type="text" />
<input wire:model="inputs.{{ $key }}.qty" type="text" />
<input value="{{ (int)$value['price'] * (int)$value['qty'] }}" type="text" />
<br>
@endforeach
<button wire:click.prevent="store()">Submit</button>
</form>