gpt4 book ai didi

javascript - 在 Laravel 4 上使用循环将数据数组存储到单个数组中

转载 作者:行者123 更新时间:2023-11-28 01:48:32 24 4
gpt4 key购买 nike

我一直在思考如何将数据数组存储到单个数据数组中,以便我可以使用 eloquent 将其插入到表中。我正在使用 javascript 添加动态行。这是js:

$(function(){
var rowCount = document.getElementById('tblContacts').rows.length - 1 ;
var rowArrayId = rowCount ;

function addRow(){

$("#tblContacts tbody").append(
"<tr>"+
"<td><input type='text' name='product[" + rowArrayId + "][name]' class='form-control'/></td>"+
"<td><textarea name='product[" + rowArrayId + "][description]' class='form-control' rows='1'></textarea></td>"+
"<td><input type='text' name='product[" + rowArrayId + "][quantity]' class='form-control'/></td>"+
"<td><input type='text' name='product[" + rowArrayId + "][price]' class='form-control'/></td>"+
"<td><button class='btnRemoveRow btn btn-danger'>Remove</button></td>"+
"</tr>");

$(".btnRemoveRow").bind("click", removeRow);

rowArrayId = rowArrayId + 1; };


function removeRow(){
var par = $(this).parent().parent(); //tr
par.remove();
};
});

这是我的 html 文件

<tr>
<td><input type='text' name='product[0][name]' class="form-control"/></td>
<td><textarea name='product[0][description]' class="form-control" rows="1"></textarea></td>
<td><input type='text' name='product[0][quantity]' class="form-control"/></td>
<td><input type='text' name='product[0][price]' class="form-control"/></td>
<td><button class="btnRemoveRow btn btn-danger">Remove</button></td>
</tr>
$(".btnRemoveRow").bind("click", removeRow);
$("#btnAddRow").bind("click", addRow);

当我尝试使用时在我的 Controller 中

$input = Input::get('product');
dd($input);

我得到了这些结果:

array (size=3)
0 =>
array (size=4)
'name' => string 'first product' (length=13)
'description' => string 'first product description' (length=25)
'quantity' => string '10' (length=2)
'price' => string '15' (length=2)
1 =>
array (size=4)
'name' => string '2nd product ' (length=12)
'description' => string '2nd product description' (length=23)
'quantity' => string '20' (length=2)
'price' => string '20' (length=2)
2 =>
array (size=4)
'name' => string '3rd product ' (length=12)
'description' => string '3rd product description' (length=23)
'quantity' => string '25' (length=2)
'price' => string '30' (length=2)

我是从这里学到的: Generating New Array from Laravel 4 Input

我的问题是如何将这些数组放入一个数组中以像这些代码一样出现

$insert = array();

foreach($tab as $key => $value)
{
$insert[] = array(
'id_reservation' => $reservation_id,
'produit_id' => $key,
'quantite' => $value
);
}

DB::table('products')->insert($insert);

我也从这里得到上面的代码:[SOLVED] fluent query builder multiple insert with a foreach

最佳答案

您可以通过构造一个关联数组来插入多个值,其中键是列名,值是值。您感到困惑的原因并不明显,因为您提供的示例非常准确:

$inserts = array();
foreach ( $input as $v ) {
$inserts[] = array('name' => $v['name'], 'quantity' => $v['quantity']);
}
DB::table('your_table')->insert($inserts);

关于javascript - 在 Laravel 4 上使用循环将数据数组存储到单个数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20008687/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com