我有一个带有文件上传选项的 symfony 表单。那么如何在这种形式中添加进度条。我尝试过使用 AJAX,但没有成功。
$(".loading").show();
$.ajax({
url: {
{
path('myroute')
}
},
data: $("#form1").serialize(),
type: "POST",
success: function (response) {
if (response != 'Success') {
alert(response);
} else {
if ($("#return").is(":checked") == true)
redirect("pages_add.php?res=add_success");
else
redirect("pages_manager.php?res=add_success");
}
$(".loading").hide();
}
});