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
        ]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法