3
當我self.response.out.write(self.request.path)
輸出是一樣的東西\page\cfg%27%40
。谷歌應用程序引擎:打印「self.request.path」
如何打印出的字符呢?
當我self.response.out.write(self.request.path)
輸出是一樣的東西\page\cfg%27%40
。谷歌應用程序引擎:打印「self.request.path」
如何打印出的字符呢?
你必須做這樣的事情
import urllib2
path = self.request.path
unquoted_path=urllib2.unquote(path)
謝謝,它的工作原理。 – Peter 2011-05-05 07:12:25