jQuery ajaxForm uploadProgress 防止烧瓶 render_template
Posted
技术标签:
【中文标题】jQuery ajaxForm uploadProgress 防止烧瓶 render_template【英文标题】:jQuery ajaxForm uploadProgress preventing flask render_template 【发布时间】:2020-08-15 10:31:37 【问题描述】:我在我的烧瓶应用程序中创建了一个进度条,它在前端执行以下操作:
$(function ()
$('form').ajaxForm(
beforeSend: function ()
,
uploadProgress: function (event, position, total, percentComplete)
uploadPercentage = percentComplete;
);
);
不知何故,这阻止了我在烧瓶中的发布路线结束时的以下返回工作
return render_template('channel_match.html', data=config_data)
真的不知道为什么会这样,也没有通过谷歌找到太多。任何帮助将不胜感激。
【问题讨论】:
【参考方案1】:通过"return render_template()" doesn't work [XMLHttpRequest() & flask]解决了这个问题
修复是在我的 ajaxForm 中添加以下内容
success: function (res)
document.write(res);
【讨论】:
以上是关于jQuery ajaxForm uploadProgress 防止烧瓶 render_template的主要内容,如果未能解决你的问题,请参考以下文章
Jquery .ajaxForm() 提交给出 404 错误但 URL 正确 ASP.Net MVC
用PHP关于Jquery表单插件ajaxForm里success不返回问题