码迷,mamicode.com
首页 > 其他好文 > 详细

flask开发常用的重定向的方式

时间:2021-02-22 12:34:44      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:重定向   headers   art   size   span   for   cat   延迟   style   

 

方式1:前端重定向,用js代码,延迟2秒后跳转到首页

<script>
setTimeout(function () {
location.href = ‘/‘;
}, 2000);
</script>

方式2:前端重定向,用js代码, 注册成功后,延迟1秒钟重新刷新当前页面
<script>
setTimeout(‘location.reload();‘, 1000);
</script>


方式3:前端重定向,用js代码,在页面加载时,就执行该函数
window.onload = function () {
fillComment(‘{{article.articleid}}‘, ‘1‘);

};

 

方式4:后端重定向,接口中跳转,利用响应头部进行重定向
response = make_response(‘注销并进行重定向‘, 302)
response.headers[‘Location‘] = url_for(‘index.home‘) ‘蓝图.函数‘
或者 
response.headers[‘Location‘] = ‘/‘

方式5:后端重定向,?接口中跳转,直接在响应中进行重定向

@app.route(‘/redjs‘)
def redjs():
html = ‘感谢访问,2秒以后将跳转到首页.‘
html += "<script>"
html += "setTimeout(function() {location.href=‘/‘;}, 2000);"
html += "</script>"
return html
?



flask开发常用的重定向的方式

标签:重定向   headers   art   size   span   for   cat   延迟   style   

原文地址:https://www.cnblogs.com/ojbk6943/p/14425615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!