doujiu6976 2019-04-11 10:58
浏览 94
已采纳

如何在Laravel中不使用foreach存储请求数组?

I have an array in the post request as an example below:

$data = array(
    array('title'=>'1st title', 'desc'=>'desc'),
    array('title'=>'2nd title', 'desc'=>'desc'),
    array('title'=>'3rd title', 'desc'=>'desc'),
)

Is there a way in Laravel using Eloquent I can save above data without using foreach? Note that the array keys which I am getting in the request is not same as column names of the table.

  • 写回答

3条回答 默认 最新

  • doushi9729 2019-04-11 11:02
    关注

    I hope this would help you

    $data = [
        ['title' => '1st title', 'desc' => 'desc'],
        ['title' => '2nd title', 'desc' => 'desc']
        .....
    ];
    
    DB::table('users')->insert($data);
    

    Put all the values you want to insert in to an array and then pass it to the insert function.

    Source: https://laravel.com/docs/5.1/queries#inserts

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 我要一个分身加定位两个功能的安卓app
  • ¥15 基于FOC驱动器,如何实现卡丁车下坡无阻力的遛坡的效果
  • ¥15 IAR程序莫名变量多重定义
  • ¥15 (标签-UDP|关键词-client)
  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助
  • ¥15 STM32控制MAX7219问题求解答