Heim > Fragen und Antworten > Hauptteil
1. Wenn die Seite auf die Blad-Vorlagenseite zugreift, ist der Code undefiniert
<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. Undefinierte Variable: flag_result wird angezeigt 4.
PS: Sie können view('importexcel',compact('flag_result','fileType')); in der Kontrollebene zurückgeben. Senden Sie dann die Daten an den Controller und kehren Sie zur Seite zurück.
淡淡烟草味2017-05-31 10:33:47
<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(isset($flag_result))
@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
@endif
</p>