1. 程式人生 > >關於http請求中from參數重定向的使用

關於http請求中from參數重定向的使用

TP 進行 from www request 獲取 return http請求 mce

如 www.baidu.com?from=index
def index(request):

  url = request.GET.get("from") #從url中獲取get參數

  url = "/" + url +"/" #拼接
  return redirect(url) #進行重定向處理


關於http請求中from參數重定向的使用