真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在python中利用flask框架實現(xiàn)一個重定向功能-創(chuàng)新互聯(lián)

本篇文章為大家展示了怎么在python中利用flask框架實現(xiàn)一個重定向功能,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

創(chuàng)新互聯(lián)建站專注于臨川企業(yè)網(wǎng)站建設,成都響應式網(wǎng)站建設公司,電子商務商城網(wǎng)站建設。臨川網(wǎng)站建設公司,為臨川等地區(qū)提供建站服務。全流程按需策劃設計,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務

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

Redirecting...

Redirecting...

You should be redirected automatically to target URL: /login. 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' => '
Redirecting...

Redirecting...

You should be redirected automatically to target URL: /login. 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>

上述內(nèi)容就是怎么在python中利用flask框架實現(xiàn)一個重定向功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文名稱:怎么在python中利用flask框架實現(xiàn)一個重定向功能-創(chuàng)新互聯(lián)
瀏覽路徑:http://weahome.cn/article/dheeop.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部