next_url = request.path_info

print(next_url)

print(request.get_full_path()) //打印出全路径(路径和参数)

print(request.path_info) //取当前请求的路径

05-28 14:30