dscuu86620 2017-04-03 13:29
浏览 42

从foreach循环内的数据库填充数组并稍后获取它

I want to populate an array with ids that are fetched from db table. Later I want to fetch those ids from the array to insert into another db table. Below is the code:

 public function storeBaritems()
{
    $id = Auth::user()->id;
    $bartypearray = array();
    $bartypes = request('select1');     // <select id="select1" name="select1[]"
    foreach ($bartypes as $type) {
        $bartypearray[] = Bartype::select('bartype_id')
                            ->where('bar_type_name','like',$type)
                            ->where('restaurant_id', $id)
                            ->get();
    }
    $baritems = request('itemname');   //<input type="text" class="hookah-field" name="itemname[]">
    $descriptions = request('description');  //<input type="text" class="hookah-field" name="description[]">
    $quantity = request('quantity'); //<input type="text" class="hookah-field" name="quantity[]">
    $prices = request('price');  //<input type="text" class="hookah-field" name="price[]">
    $i = 0;
    foreach ($bartypearray as $item) {
            Bar_menu::create([
                'item_name'=>$baritems[$i],      
                'description'=>$descriptions[$i], 
                'quantity'=>$quantity[$i],
                'price'=>$prices[$i],
                'res_id'=>$id,
                'type_id'=>$item->bartype_id
                ]);
            $i += 1;
    }
} 

The HTML form dynamically creates new fields with same "name" attribute. Right now, I am getting the error - "Exception in Collection.php line 1527: Property [bartype_id] does not exist on this collection instance." Any solution would help. Thanks

  • 写回答

2条回答 默认 最新

  • dongmei8511 2017-04-03 13:32
    关注

    Make change here,

    $bartypearray[] = Bartype::select('bartype_id')
                                ->where('bar_type_name','like',$type)
                                ->where('restaurant_id', $id)
                                ->first();
    

    get() will return 2-D array and first() will return 1-D array

    评论

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图