我正在使用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();
}
但是,现在我想将文件添加到提交功能,该怎么做? 感谢