request.get_full_path() 和request.path区别

Posted zhongbokun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了request.get_full_path() 和request.path区别相关的知识,希望对你有一定的参考价值。

1. 都是获取request 请求的url路径

2. request.get_full_path() -- 获取当前url,(包含参数)

     请求一个http://127.0.0.1:8000/200/?type=10

      request.get_full_path()返回的是【/200/?type=10】

     request.path --  获取当前url,(但不含参数)

      request.path返回的是 【/200/】

3. 如果想让其正常显示(有中文的情况下),需进行如下编码处理【django 默认编码是unicode 的】

 

request.get_full_path().encode(utf-8)
request.path.encode(utf-8)

 

--------------------- 本文来自 qin147896325 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/zd147896325/article/details/79166396?utm_source=copy 

 

以上是关于request.get_full_path() 和request.path区别的主要内容,如果未能解决你的问题,请参考以下文章

Django view视图

Django之视图层

CBV+装饰器

python--django之视图函数

django之视图函数的介绍

Django url 标签和reverse()函数的使用(转)