url_escape() 对传入的url或路径进行转义,将'\'转义为'/',返回转义后的url或路径。
以下是 url_escape() 的语法:
url_escape(path='')
● path [str]:路径或者url。
返回转义后的路径或url。
以下展示了使用 url_escape() 的实例:
from kyger.utility import url_escape print(url_escape('E:\python\kgcms')) # 进行转义
以上实例运行后输出的结果为:
'E:/python/kgcms'