你知道为什么会出现“Undefined index:questions”吗?

时间:2018-05-27 11:37:13

标签: php laravel

我有一个storeQuantities()方法,用于存储用户在会议详细信息页面中选择的故障单数量。

在此方法中,“dd($selectedRtypes)”显示以下内容。问题是空的,因为没有与此会议相关的问题。

array:1 [▼
  "geral" => array:5 [▼
    "quantity" => "2"
    "price" => 0
    "total" => 0
    "questions" => Collection {#255 ▼
      #items: []
    }
    "id" => 1
  ]
]

在registration.blade.php中出现此错误:

Undefined index: questions 

使用:

@if(is_null($selectedRtypes['questions']))

....

你知道为什么吗?

1 个答案:

答案 0 :(得分:1)

$selectedRtypes['geral']['questions']