1.當頁面造訪blad模板頁面是出現變數未定義.
2.程式碼
<p>
<form method="POST" action="importexcel" enctype="multipart/form-data">
<input type="file" name="myfile" /><br/>
<input type="submit" name="submit" value="提交" />
</form>
</p>
@if($flag_result == true)
<p style="color:darkgreen;margin-top:5px;">
导入数据成功
</p>
@endif
@if(!($fileType == 'xlsx'))
<p style="color:red;margin-top:5px;">
数据不合法
</p>
@endif
</p>
3.會提示 Undefined variable: flag_result
4.如何解決?
PS:可以在控制層 return view('importexcel',compact('flag_result','fileType'));我是先進入這個view。然後,提交資料進入controller再返回頁面。
雷雷
那麼問題來了,$flag_result在控制器裡面定義了沒?截圖看看
第一次進入的時候,你設定了,然後提交資料的時候進入controller,再次回到這個view的時候是否也設定了這兩個變數呢