如何使用QueryString启动网站?

时间:2013-03-04 18:44:35

标签: python python-3.x cherrypy mako

我在Cherrypy中使用Mako编程了服务器。

我有一个变量(json_data,其中是文件[json]的内容),其中包含我网站上的工作数据。

要更改这些参数,我必须使用查询字符串

简化我的数据管理工作。

我需要在我的服务器URL上打开变量(json_data)。

localhost:8100?=json_data?json_data=demo_title%24+Demo+title+%23+) 我知道将分隔符的python替换为javascript。

我想在启动网站时添加变量json_data,但是怎么做?

信息:

Json_data =

demo_title%24+Demo+title+%23+proc1_script%24+script.sh+parameters+%23+proc1_chk_make%24+on+%23+outputp2_value%24++%23+demo_input_description%24+hola+mundo+%23+outputp4_visible%24+on+%23+outputp4_info%24++%23+inputdata1_max_pixels%24+1024000+%23+tag%24++%23+outputp1_id%24+nanana+%23+proc1_src_compresion%24+zip+%23+proc1_chk_cmake%24+off+%23+outputp3_description%24++%23+outputp3_value%24++%23+inputdata1_description%24+input+data+description+%23+inputp2_description%24+bien%3F+%23+inputp3_description%24+funciona+%23+proc1_cmake%24+D+CMAKE_BUILD_TYPE%3Astring%3DRelease++%23+outputp2_visible%24+on+%23+outputp3_visible%24+on+%23+outputp1_type%24+header+%23+inputp1_type%24+text+%23+demo_params_description%24+va+bien+%23+outputp1_description%24++%23+inputdata1_type%24+image2d

使用程序更新

import cherrypy
import urllib
#import requests

class Root(object):
    @cherrypy.expose
    def index(self):
        jsondict = [('foo', '1'), ('foo', '2')]
        p = urllib.urlencode(jsondict)
        #url = urllib.urlopen("http://localhost:8080?%s" % params)
        #urlVar = 1
        #urlVar2 = 2
        #requests.get("localhost:8080/?", params =p)
        raise cherrypy.HTTPRedirect("localhost:8080?" + params)


cherrypy.config.update({

        'server.socketPort': 8080

})
cherrypy.quickstart(Root())

1 个答案:

答案 0 :(得分:0)

我不得不问,为什么你需要这样做?这些变量不能成为处理请求的方法的默认值吗?