如何从turbogears/cherrypy应用程序浏览到外部URL?
我正在编写一个tinyurl克隆来学习涡轮齿轮。 我想知道如何从我的cherrypy/turbogears 应用程序将浏览器重定向到外部网站(例如www.yahoo.com)?
我用谷歌搜索了一下,但找不到太多有用的信息。
I am writing a tinyurl clone to learn turbogears. I am wondering how do i redirect my browser to the external website (say www.yahoo.com) from my cherrypy/turbogears app?
I googled about it, but could not find much useful info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需引发一个 HTTPRedirect 异常,该异常位于 Cherrypy 命名空间中。 像这样:
Just raise a HTTPRedirect exception, which lives in the cherrypy namespace. Like this: