在Flask中使用请求对象,是否有REQUEST_URI(就像在PHP中一样)?
'REQUEST_URI':
The URI which was given in order to access this page; for instance, '/index.html'.
答案 0 :(得分:2)
是的,在Flask中,您可以从request
对象获取request.path
。有关详细信息,请参阅the documentation,包括相关的请求对象的其他属性,也可能有用。