pythonredirect函數怎么用?
本文教程操作環境:windows7系統、Python3.9.1,DELLG3電腦。
描述:
跳轉指定的url
語法:
redirect();
參數:
>path
實例使用:
fromflaskimportredirect
defredirect(path):
header='HTTP/1.1302JUMP\r\nContent-Type:text/html\r\n'
location='Location:{}'.format(path)
response=header+location
returnresponse.encode('utf-8')
上述我們可以獲知信息,我們可以跳轉到新的鏈接里,需要使用fromflaskimportredirect導入,才可以正式進行函數的使用。更多Python學習教程請關注IT培訓機構:千鋒教育。