python flask框架实现重定向功能示例
Python  /  管理员 发布于 7年前   188
本文实例讲述了python flask框架实现重定向功能。分享给大家供大家参考,具体如下:
flask 重定向:
from flask import *app = Flask(__name__)@app.route('/')def index(): return redirect(url_for('login'))@app.route('/login')def login(): return render_template('login.html')if __name__ == '__main__': app.run(host='0.0.0.0',port=6001,debug=True)[oracle@node01 ~]$ curl 192.168.137.1:6001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><title>Redirecting...</title><h1>Redirecting...</h1><p>You should be redirected automatically to target URL: <a href="https:login" rel="external nofollow" rel="external nofollow" >/login</a>. If not click the link.[oracle@node01 ~]$use Net::SMTP;use LWP::UserAgent;use HTTP::Cookies;use HTTP::Headers;use HTTP::Response;use Encode;use Switch;use File::Temp qw/tempfile/;use HTTP::Date qw(time2iso str2time time2iso time2isoz);use Data::Dumper;my $CurrTime = time2iso(time());my $ua = LWP::UserAgent->new;$ua->timeout(10);$ua->env_proxy;my $now = time();$ua->agent('Mozilla/5.0');my $cookie_jar = HTTP::Cookies->new( file => 'lwp_cookies.txt', autosave => 1, ignore_discard => 1);$ua->cookie_jar($cookie_jar);my $response = $ua->get("http://127.0.0.1:6001/");if ($response->is_success) { print encode("gbk",decode("utf8",Dumper($response))); $r=$response->content; $str=encode("gbk",decode("utf8","$r")); print $str."\n";}
perl 演示:
C:\Users\TLCB\Desktop\python\模块\flask>perl a1.pl$VAR1 = bless( { '_protocol' => 'HTTP/1.0', '_content' => '这是登陆页面', '_rc' => 200, '_headers' => bless( { 'client-date' => 'Fri, 01 Sep 2017 03:23:34 GMT', 'content-type' => 'text/html; charset=utf-8', 'client-response-num' => 1, 'date' => 'Fri, 01 Sep 2017 03:23:34 GMT', 'client-peer' => '127.0.0.1:6001', 'server' => 'Werkzeug/0.12.2 Python/2.7.10', 'content-length' => '18' }, 'HTTP::Headers' ), '_previous' => bless( { '_protocol' => 'HTTP/1.0', '_content' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><title>Redirecting...</title><h1>Redirecting...</h1><p>You should be redirected automatically to target URL: <a href="https:login" rel="external nofollow" rel="external nofollow" >/login</a>. If not click the link.', '_rc' => '302', '_headers' => bless( { 'client-response-num' => 1, 'location' => 'http://127.0.0.1:6001/login', 'date' => 'Fri, 01 Sep 2017 03:23:34 GMT', 'client-peer' => '127.0.0.1:6001', 'content-length' => '219', 'client-date' => 'Fri, 01 Sep 2017 03:23:34 GMT', 'content-type' => 'text/html; charset=utf-8', 'server' => 'Werkzeug/0.12.2 Python/2.7.10', 'title' => 'Redirecting...' }, 'HTTP::Headers' ), '_msg' => 'FOUND', '_request' => bless( { '_content' => '', '_uri' => bless( do{\(my $o = 'http://127.0.0.1:6001/')}, 'U '_headers' => bless( { 'user-agent' => 'Mozilla/5.0' }, 'HTTP::Headers' ), '_method' => 'GET', '_uri_canonical' => $VAR1->{'_previous'}{'_request'}{'_uri'} }, 'HTTP::Request' ) }, 'HTTP::Response' ), '_msg' => 'OK', '_request' => bless( { '_protocol' => undef, '_content' => '', '_uri' => bless( do{\(my $o = 'http://127.0.0.1:6001/login')}, 'URI::http' ), '_headers' => bless( { 'user-agent' => 'Mozilla/5.0' }, 'HTTP::Headers' ), '_method' => 'GET', '_uri_canonical' => $VAR1->{'_request'}{'_uri'} }, 'HTTP::Request' ) }, 'HTTP::Response' );这是登陆页面C:\Users\TLCB\Desktop\python\模块\flask>
希望本文所述对大家基于Flask框架的Python程序设计有所帮助。
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号