Encode 和 Decode
Posted 3532gll
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Encode 和 Decode相关的知识,希望对你有一定的参考价值。
Server.UrlDecode();
Server.UrlEncode();
是两个成对的方法
作用是在URL传参时如果直接传中文可能会出问题(对中文参数支持部完善),所以先用
Server.UrlEncode("中文参数");
得到一个解码后的url内容。
到另外一个页面接受的时候,再用
Server.UrlDecode("编码后参数一般为 %+ 16进制数的形式");
解码,获取原来的含有中文参数的url。
以上是关于Encode 和 Decode的主要内容,如果未能解决你的问题,请参考以下文章
Python3中字符串的编码与解码以及编码之间转换(decodeencode)
拥抱脸中的 tokenizer.encode 和 tokenizer.encode_plus 有啥区别