我正在使用 Flask 设计一个动态表单,该表单使用 Ajax 将 json 和文件发送到服务器。对于 Json 部分,我使用此 JQuery 代码成功:
$("#insert_recipe").submit(function(){
$.ajax({
type : "POST",
url : "/_insert_recipe",
contentType : 'application/json; charset=utf-8',
data : JSON.stringify(recipe),
dataType: 'json',
success: function(data, textStatus){
window.location.replace("/");
$("#insert_recipe").remove();
}
但是,现在我想将文件添加到提交功能,该怎么做?谢谢