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培训机构:千锋教育。