drbz99867 2017-07-15 09:16
浏览 50
已采纳

如何将foreach循环数据存储到另一个模型中?

I want to store my foreach loop data into another variable. The problem is that I can store data into database but when I dd() the output it only shows the last data assigned to the model.

How do I get the the array data from the new model?

foreach ($carts as $cart)
{
    $buy = new Buy();               
    $buy->product_id = $cart->product_id;
    $buy->user_id = $cart->user_id;
    $buy->price = $cart->price;
    $buy->extened = $cart->extened;
    $buy->installation = $cart->installation;
    $buy->support = $cart->support;             
    $buy->feature_image = $cart->feature_image;
    $buy->name = $cart->name;
    $buy->save();               
}

dd($buy);  // it returns only last inserted data ..
  • 写回答

1条回答 默认 最新

  • doushen1026 2017-07-15 09:27
    关注

    Of course, you will get the latest inserted data. Use the following code to get all the inserted Data. It is because at last execution of the foreach loop, $buy will have the latest $cart info.

    You can use the following code to get all the Buy models. We are going to create an empty array and add $buy into the array.

    $buys = array(); // I don't care about the name of the array lol.
    foreach ($carts as $cart)
    {
        $buy = new Buy();               
        $buy->product_id = $cart->product_id;
        $buy->user_id = $cart->user_id;
        $buy->price = $cart->price;
        $buy->extened = $cart->extened;
        $buy->installation = $cart->installation;
        $buy->support = $cart->support;             
        $buy->feature_image = $cart->feature_image;
        $buy->name = $cart->name;
        $buy->save();
    
        array_push($buys,$buy);        
    }
    

    It will store every record in $buys array and then you can do whatever you want to do with that array.

    Let me know if this is what you wanted. Let me know if you have any more questions.

    UPDATE: You can run foreach loop on $buys to display/update/delete entries.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看