在 GAE (Python) 上,我试图从本地 javascript 发送一个 GET 请求,并在收到重定向到另一个页面的请求时。这是我的代码:
发送 POST 的本地 Javascript:
$.get("/editor");
GAE 上的 Python
class Editor(webapp2.RequestHandler):
def get(self):
template = jinja_environment.get_template('index.html')
self.response.out.write(template.render())
app = webapp2.WSGIApplication([('/', StartScreen), ('/editor', Editor)],
debug=True)
我可以在 url 栏中输入 url /editor,它会带我到那里。为什么我的 javascript GET 请求没有激活编辑器处理程序并打开 /editor?