doubi9531 2017-09-25 07:25
浏览 103
已采纳

未定义的索引:RegisterController.php中的user_role

i want to save the radio button value to users database. but there is a ERROR:

Undefined index: user_role in RegisterController.php

may i know how to solve this error?

migration:

 Schema::table('users',function(Blueprint $table)
    {
        $table->integer('user_role');

    });

Register controller:

   protected function create(array $data)
{

    return User::create([
        'name' => $data['name'],
        'email' => $data['email'],
        'password' => bcrypt($data['password']),
        'stuID'=> $data['stuID'],
        'user_role'=>$data['user_role'],
    ]);
}

blade file:

  <form class="form-horizontal" role="form" method="POST" action="{{ 
      route('register') }}">
                 {{ csrf_field() }}

 <label for="user_role" class="col-md-4 control-label  ">Role</label>

        <div class="user_role" id="user_role" data-toggle="buttons">
             <label class="btn btn-default user_role">
              <input type="radio" name="user_role" id="lecturer" value="1">
                    <span class="radio-dot"></span>
                      <span class="user_role-word">Lecturer</span>
             </label>

             <label class="btn btn-default user_role">
                <input type="radio" name="user_role" id="student"value="2">
                   <span class="radio-dot"></span>
                     <span class="user_role-word">Student</span>
              </label>
        </div>
  • 写回答

1条回答 默认 最新

  • duannaiying9662 2017-09-25 07:38
    关注

    If you won't select one of your radio buttons when submitting the form, you won't have $data['user_role'] index in the array. You can prevent this error by making radio buttons required in the form OR check the array for user_role index before use.

    return User::create([
            'name' => $data['name'],
            'email' => $data['email'],
            'password' => bcrypt($data['password']),
            'stuID'=> $data['stuID'],
            'user_role'=> isset($data['user_role']) ? $data['user_role'] : null
        ]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来