當前的URL是如何使用Python/GAE獲取當前域名?
http://myapp.appspot.com/something/<user-id>
或
http://127.0.0.1:8080/something/<user-id>
如何在我的Python代碼,我可以得到http://myapp.appspot.com/
或http://127.0.0.1:8080/
? 這是需要動態鏈接生成,例如,到http://myapp.appspot.com/somethingelse
。
self.request.path
返回整個路徑。
爲什麼不使用相對URL? 可以在你的網站的任何地方工作到相同主機上的相應URL。 – geoffspear 2011-04-30 14:20:12
我正在創建RSS。相對URL不會在那裏工作。 – 2011-04-30 15:13:47