如何将URL转换为要解析的变量(python)

时间:2014-05-30 18:03:59

标签: python tornado

我不是在问我如何解析网址。我知道的很多。

我要问的是,在客户端,我将值放入网址并将这些值与&amp ;.

分开。

在我开始解析之前,如何首先获取该URL?

以下是一些代码(假设网址为http:// 本地主机:8888 / CreateNewUser /用户名=乔治&安培;密码= corghi:

from datetime import date
import tornado.escape
import tornado.ioloop
import tornado.web
from urlparse import urlparse

class CreateNewUserHandler(tornado.web.RequestHandler):
    def get(self, username, password):
        arrayofvalues = urlparse('url') ***here's where I want the url to go but how do get it there? Each URL is unique so I can hard code it in***

        response = {
                  }
        self.write(response)

1 个答案:

答案 0 :(得分:2)

您可以使用self.request.uri获取RequestHandler中的当前网址: