donglv1831 2017-02-24 16:36
浏览 74
已采纳

如何从ajax中获取laravel中的请求

I'm trying to send multiple data to store more tha 1 row in a data base in Laravel, for that I'm using ajax as follow:

var postData = [];

for (i = 0 ; i<100; i++){             
    postData.push({form_name: name[i], etc...});
}

$.ajax({
    async: false,
    url: {{route(createForm)}},
    headers: {"X-CSRF-TOKEN": token},
    type: 'POST',
    contentType: 'application/json',
    dataType: 'json',
    data: JSON.stringify(postData),
}); 

When I check de console the data it's being send pretty good but I don't have any clue in how to fetch the request in the controller, when it is just a single request the controller works perfect like this:

public function createForm(Request $data, User $user)
{
    if ($data->ajax()){
        $form=new Form($data->all());
        $user->forms()->save($form); 
    }
} 

But as I said, I don't know if the request is now an array or how can I handle it to store all the data in the DB with a loop

Thanks a lot.

  • 写回答

1条回答 默认 最新

  • dongshou1856 2017-02-24 17:21
    关注
    public function createForm(Request $data, User $user)
    {
        foreach( $data->all() as $row) {
            $form = new Form($row);
            $user->forms()->save($form); 
        }
    } 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 qgcomp混合物线性模型分析的代码出现错误:Model aliasing occurred
  • ¥100 已有python代码,要求做成可执行程序,程序设计内容不多
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥15 小红薯封设备能解决的来
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助
  • ¥15 STM32控制MAX7219问题求解答
  • ¥20 在本地部署CHATRWKV时遇到了AttributeError: 'str' object has no attribute 'requires_grad'