我已遵循官方文档https://symfony.com/doc/current/controller/upload_file.html
文件的上传工作正常,但是问题出在我选择文件进行上传时第一次出现问题,我无法在输入中显示它
仅在将鼠标放在输入上时才显示
如何解决这个问题?
答案 0 :(得分:-1)
问题已解决
我已添加此脚本
<script>
// Add the following code if you want the name of the file appear on select
$(".custom-file-input").on("change", function() {
var fileName = $(this).val().split("\\").pop();
$(this).siblings(".custom-file-label").addClass("selected").html(fileName);
});
</script>