douli2876 2018-06-13 11:06
浏览 54
已采纳

如何组织这个上下文来正确收集每个参与者的答案?

I have a form for a user register in a conference. But when the user clicks in "Store Registration" it shows an undefined offset error and the issue should be because I'm not organizing correctly this context. The form to register in a conference is different depending on if the "all_participants" column of the conferences table is "1" or "0".

If all_participants is 1 in the conferences table

If the conferences table has the column "all_participants" with value "1" that means that is necessary to collect the name and surname of each participant (about each selected registration type). So the form will show form fields to collect the name and surname of each participant. Also if some of the selected registration type(s) have custom questions associated is necessary to collect the answers to that questions for each participant if "all_participants" is 1. In the image above the registration type "General" has a custom question associated "Phone", so its necessary to collect the answers of the two participants there are being registered with the registration type "General".

Image that shows the form of all_participants as "1" in the conferences table

enter image description here

After the user click in "Store Registration" it should be stored in the tables like below:

enter image description here

If all_participants is 0 in the conferences table

If "all_participants" is "0" the form would have only one field "Phone" because the name and surname are got directly from the authenticated user info. And because "all_participants" is "0" is only necessary also to collect the phone of the user that is doing the registration (the authenticated user), for the other participants is not necessary because "all_participants" is "0". So the form if "all_participants" is "0" would have only one field (Phone) in this case. And the participants table is only necessary to store the name and surname of the user that did the registration, for the other participants can be stored empty "".

Form if all_participants is "0":

enter image description here

After the user click in "Store Registration" it should be stored in the tables like below:

enter image description here

HTML of this image context for the case of "all_participants" is 1:

<form method="post" id="registration_form" action="http://proj.test/conference/1/conference-title/registration/storeRegistration">

  <h6>Participant - 1 - general</h6>
  <div class="form-group">
    <label for="namegeneral_1">Name</label>
    <input type="text" id="namegeneral_1" name="participant_name[]" required="" class="form-control" value="">
  </div>

  <div class="form-group">
    <label for="surnamegeneral_1">Surname</label>
    <input type="text" id="surnamegeneral_1" required="" class="form-control" name="participant_surname[]" value="">
  </div>

  <div class="form-group">
    <label for="participant_question">Phone?</label>
    <input type="text" name="participant_question[]" class="form-control" required="">
    <input type="hidden" name="participant_question_required[]" value="1">
    <input type="hidden" value="1" name="participant_question_id[]">
  </div>

  <input type="hidden" name="rtypes[]" value="1">

  <h6> Participant - 2 - general</h6>

  <div class="form-group">
    <label for="namegeneral_2">Name</label>
    <input type="text" id="namegeneral_2" name="participant_name[]" required="" class="form-control" value="">
  </div>

  <div class="form-group">
    <label for="surnamegeneral_2">Surname</label>
    <input type="text" id="surnamegeneral_2" required="" class="form-control" name="participant_surname[]" value="">
  </div>

  <div class="form-group">
    <label for="participant_question">Phone?</label>
    <input type="text" name="participant_question[]" class="form-control" required="">
    <input type="hidden" name="participant_question_required[]" value="1">
    <input type="hidden" value="1" name="participant_question_id[]">
  </div>

  <input type="hidden" name="rtypes[]" value="1">

  <h6> Participant - 1 - plus</h6>

  <div class="form-group font-size-sm">
    <label for="nameplus_1">Name</label>
    <input type="text" id="nameplus_1" name="participant_name[]" required="" class="form-control" value="">
  </div>

  <div class="form-group font-size-sm">
    <label for="surnameplus_1">Surname</label>
    <input type="text" id="surnameplus_1" required="" class="form-control" name="participant_surname[]" value="">
  </div>

  <input type="hidden" name="rtypes[]" value="2">

  <input type="submit" class="btn btn-primary" value="Store Registration">
</form>

When user clicks in "Store Registration" the code goes to the StoreRegistration() to store all the registration info in database:

public function storeRegistration(Request $request, $id, $slug = null)
  {
      $allParticipants = Conference::where('id', $id)->first()->all_participants;
      $user = Auth::user();

      $rules = [];
      $messages = [];

      if ($allParticipants == 1) {

          $rules["participant_name.*"] = 'required|max:255|string';
          $rules["participant_surname.*"] = 'required|max:255|string';
      }

      $validator = Validator::make($request->all(), $rules);

      if ($validator->passes()) {

          $total = Session::get('total');

          $registration = Registration::create([
              'conferenec_id' => $id,
              'main_participant_id' => $user->id,
              'status' => ($total > 0) ? 'I' : 'C',
          ]);

          $participants = [];

          for ($i = 0; $i < count($request->participant_name); $i++) {
              $name = ($allParticipants) ? $request->participant_name[$i] : '';
              $surname = ($allParticipants) ? $request->participant_surname[$i] : '';
              $participants[] = Participant::create([
                  'name' => $name,
                  'surname' => $surname,
                  'registration_id' => $registration->id,
                  'registration_type_id' => $request->rtypes[$i]

              ]);
          }

          if (isset($request->participant_question)) {
              foreach( $request->participant_question as $key => $question ) {
                  $answer = Answer::create([
                      'question_id' => $request->participant_question_id[$key],
                      'participant_id' => $participants[$key]->id, // undefined index error is here
                      'answer' => $request->participant_question[$key],
                  ]);
              }
          }
          return redirect(route('user.index', ['user' => Auth::id()]).'#myTickets');
      }
      else{
          dd($validator->errors());
      }
  }

I have the Question model that has the getHtmlInput() to generate the HTML for the custom questions and add the required attribute to the field if the "required" column in pivot table "registration_type_questions" is "1":

class Question extends Model
{
    protected $fillable = [
        'question', 'type', 'conference_id',
    ];
    public static $typeHasOptions = [
        'radio_btn',
        'select_menu',
        'checkbox'
    ];
    public function registration_type()
    {
        return $this->belongsToMany('App\RegistrationType', 'registration_type_questions')
            ->withPivot('required');
    }
    public function options()
    {
        return $this->hasMany('App\QuestionOption');
    }
    public function hasOptions()
    {
        return in_array($this->type, self::$typeHasOptions);
    }
    public function getHtmlInput($name = "", $options = "", $required = false, $customtype = false)
    {
        $html = '';
        $html .= $customtype == 'checkbox' ? "<div class='checkbox-group ".($required ? " required" : "")."'>" : '';
        $html .= $customtype == 'select_menu' ? "<select name='participant_question[]' class='form-control' " . ($required ? " required" : "")
            . ">" : '';

        if (empty($options)) {
            switch ($customtype) {
                case "text":

                    $html .= " 
                <input type='text' name='participant_question[]' class='form-control'" . ($required ? " required" : "")
                        . ">";
                    break;

                case "file":
                    $html .= " 
                <input type='file' name='participant_question[]' class='form-control'" . ($required ? " required" : "") . ">";
                    break;

                case "long_text":
                    $html .= "
            <textarea name='participant_question' class='form-control' rows='3'" . ($required ? " required" : "") . ">"
                        . $name .
                        "</textarea>";
                    break;
            }
        } else {
            foreach ($options as $option) {
                switch ($customtype) {
                    case "checkbox":
                        $html .= " 
        <div class='form-check'>
            <input type='checkbox' name='participant_question[]' value='" . $option->value . "' class='form-check-input' >
                <label class='form-check-label' for='exampleCheck1'>" . $option->value . "</label>
        </div>";
                        break;
                    case "radio_btn":
                        $html .= " 
            <div class='form-check'>
                <input type='radio' name='participant_question[]' value='" . $option->value . "' class='form-check-input'" . ($required ? " required" : "") . ">" .
                            '    <label class="form-check-label" for="exampleCheck1">' . $option->value . '</label>' .
                            "</div>";
                        break;
                    case "select_menu":
                        $html .= "<option value='" . $option->value . "'>" . $option->value . "</option>";
                        break;
                }
            }
        }
        $html .= $customtype == 'select_menu' ? "</select>" : '';
        $html .= $customtype == 'checkbox' ? "</div>" : '';

        return $html;
    }
}

Then in the view the getHtmlInput() is used like:

@foreach($selectedRtype['questions'] as $customQuestion)
  <div class="form-group">
      <label for="participant_question">{{$customQuestion->question}}</label>
      @if($customQuestion->hasOptions() && in_array($customQuestion->type, ['checkbox', 'radio_btn', 'select_menu']))
          {!! $customQuestion->getHtmlInput(
              $customQuestion->name,
              $customQuestion->options,
              ($customQuestion->pivot->required == '1'),
              $customQuestion->type)
          !!}

      @else
          {!! $customQuestion->getHtmlInput(
              $customQuestion->name,
              [],
              ($customQuestion->pivot->required == '1'),
              $customQuestion->type)
          !!}
      @endif
      <input type="hidden"
             name="participant_question_required[]"
             value="{{ $customQuestion->pivot->required }}">
      <input type="hidden"
             value="{{ $customQuestion->id }}"
             name="participant_question_id[]"/>
  </div>
@endforeach
  • 写回答

1条回答 默认 最新

  • douluan8828 2018-06-16 07:19
    关注

    I've slightly modified the HTML file structure.

    <form method="post" id="registration_form" action="http://proj.test/conference/1/conference-title/registration/storeRegistration">
    
    {{csrf_field()}}
    
    <h6>Participant - 1 - general</h6>
    <div class="form-group">
        <label for="namegeneral_1">Name</label>
        <input type="text" id="namegeneral_1" name="participant[1][name]" required="" class="form-control" value="">
    </div>
    
    <div class="form-group">
        <label for="surnamegeneral_1">Surname</label>
        <input type="text" id="surnamegeneral_1" required="" class="form-control" name="participant[1][surname]" value="">
    </div>
    
    <div class="form-group">
        <label for="participant_question">Phone?</label>
        <input type="text" name="participant[1][answer]" class="form-control" required="">
        <input type="hidden" name="participant_question_required[]" value="1">
        <input type="hidden" value="1" name="participant[1][question_id]">
    </div>
    
    <input type="hidden" name="participant[1][rtypes]" value="1">
    
    <h6> Participant - 2 - general</h6>
    
    <div class="form-group">
        <label for="namegeneral_2">Name</label>
        <input type="text" id="namegeneral_2" name="participant[2][name]" required="" class="form-control" value="">
    </div>
    
    <div class="form-group">
        <label for="surnamegeneral_2">Surname</label>
        <input type="text" id="surnamegeneral_2" required="" class="form-control" name="participant[2][surname]" value="">
    </div>
    
    <div class="form-group">
        <label for="participant_question">Phone?</label>
        <input type="text" name="participant[2][answer]" class="form-control" required="">
        <input type="hidden" name="participant_question_required[]" value="1">
        <input type="hidden" value="1" name="participant[2][question_id]">
    </div>
    
    <input type="hidden" name="participant[2][rtypes]" value="1">
    
    <h6> Participant - 1 - plus</h6>
    
    <div class="form-group font-size-sm">
        <label for="nameplus_1">Name</label>
        <input type="text" id="nameplus_1" name="participant[3][name]" required="" class="form-control" value="">
    </div>
    
    <div class="form-group font-size-sm">
        <label for="surnameplus_1">Surname</label>
        <input type="text" id="surnameplus_1" required="" class="form-control" name="participant[3][surname]" value="">
    </div>
    
    <input type="hidden" name="participant[3][rtypes]" value="2">
    
    <input type="submit" class="btn btn-primary" value="Store Registration">
    

    I will store all the ‍participants in an array named participant and send thme to Backend

    output :

    array:2 [▼
      "_token" => "WDtDV0CL6OKVCsGSi5HNyi4HQ6Pmo6VAwzDsgYK1"
      "participant" => array:3 [▼
        1 => array:5 [▼
          "name" => "ali"
          "surname" => "shahabi"
          "answer" => "0937"
          "question_id" => "1"
          "rtypes" => "1"
        ]
        2 => array:5 [▼
          "name" => "danyal"
          "surname" => "shahabi"
          "answer" => "0938"
          "question_id" => "1"
          "rtypes" => "1"
        ]
        3 => array:3 [▼
          "name" => "baba"
          "surname" => "babaei"
          "rtypes" => "2"
        ]
      ]
    ]
    

    storeRegistration method .

    I removed validation from the code and focused on the logic of the program:

    public function storeRegistration(Request $request, $id, $slug = null)
    {
    
        # all_participants field
        $allParticipants = Conference::where('id', $id)->first()->all_participants;
    
        $total = Session::get('total');
    
        # user object
        $user = Auth::user();
    
        # add registration to Database
        $registration = Registration::create([
            'conference_id' => $id,
            'main_participant_id' => $user->id,
            'status' => ($total > 0) ? 'I' : 'C',
        ]);
    
        # List of all participants
        $participants_list=$request->get('participant');
    
        #add all participants to Database
        foreach ($participants_list as $participant)
        {
            $name = ($allParticipants) ? $participant['name'] : '';
            $surname = ($allParticipants) ? $participant['surname'] : '';
            $participant_result = Participant::create([
                'name' => $name,
                'surname' => $surname,
                'registration_id' => $registration->id,
                'registration_type_id' => $participant['rtypes']
            ]);
    
            # save answer to Database if exist
            if(isset($participant['question_id']))
            {
                $answer = Answer::create([
                    'question_id' => $participant['question_id'],
                    'participant_id' => $participant_result->id,
                    'answer' => $participant['answer'],
                ]);}
        }
    
        return redirect(route('user.index', ['user' => Auth::id()]).'#myTickets');
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集