我正在尝试使用以下命令:
self.redirect('/sign/')
我已经定义了
appl = webapp.WSGIApplication([('/upload/',View),('/sign/',Next)],debug=True)
但是上面的命令没有将我重定向到相应的页面而是显示消息
Status: 302 Moved Temporarily
Content-Type: text/html; charset=utf-8
Cache-Control: no-cache
Location: http://localhost:8080/sign/
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Content-Length: 0
谁能告诉我该怎么办?