Heim  >  Fragen und Antworten  >  Hauptteil

php - Warum fügt Laravel jedes Mal nur ein Datenelement ein?

DB::beginTransaction(); Nach dem Einschalten kann jedes Mal nur das erste Datenelement eingefügt werden, der Rest wird zurückgesetzt.
Der Code lautet wie folgt:

try {
     DB::beginTransaction();
     foreach ($rightOrWrongRows as $row) {
     $question = array_combine($rightOrWrongHeader, $row);
     RightOrWrong::create([
         'question' => $question['question'],
         'answer' => $question['answer'],
         'scope' => $question['scope'],
         'degree' => 1,
         'exam_id' => $this->examId,
        ]);
     }
     DB::commit();
     } catch (\Exception $exception) {
        DB::rollBack();
        Log::info($exception->getMessage());
    }

Wenn Sie die Transaktion abschließen, können Sie mehrere Daten einfügen

try {
     //DB::beginTransaction();
     foreach ($rightOrWrongRows as $row) {
     $question = array_combine($rightOrWrongHeader, $row);
     RightOrWrong::create([
         'question' => $question['question'],
         'answer' => $question['answer'],
         'scope' => $question['scope'],
         'degree' => 1,
         'exam_id' => $this->examId,
        ]);
     }
     //DB::commit();
     } catch (\Exception $exception) {
        //DB::rollBack();
        Log::info($exception->getMessage());
    }

Bitte helfen Sie mir, dieses Problem zu lösen, ich bin ein Neuling.

阿神阿神2702 Tage vor876

Antworte allen(2)Ich werde antworten

  • 習慣沉默

    習慣沉默2017-06-19 09:09:10

    try

    try {
         DB::beginTransaction();
         $data = [];
         foreach ($rightOrWrongRows as $row) {
             $question = array_combine($rightOrWrongHeader, $row);
             $data[] = [
                 'question' => $question['question'],
                 'answer' => $question['answer'],
                 'scope' => $question['scope'],
                 'degree' => 1,
                 'exam_id' => $this->examId,
                 'created_at' => date('Y-m-d H:i:s'),
                 'updated_at' => date('Y-m-d H:i:s'),
                ]);
         }
         RightOrWrong::insert($data);
         DB::commit();
         } catch (\Exception $exception) {
            DB::rollBack();
            Log::info($exception->getMessage());
        }

    Antwort
    0
  • 世界只因有你

    世界只因有你2017-06-19 09:09:10

    错误信息, 表结构, 图.

    Antwort
    0
  • StornierenAntwort