用于回显ajax请求的python代码

时间:2013-08-22 06:31:53

标签: python ajax

我在python中寻找简单的echo服务器实现。我用Google搜索,但所有结果都依赖于外部库。我从html发送一个字符串到python:

$.post("server.py", 'blabla')

我希望python做的是这样的事情:

wait for request:
    send_back('OK: ' + uppercase(request.data))

你是怎么做到的?

1 个答案:

答案 0 :(得分:1)

您需要一些东西来处理您的网址。你试过Web.py

吗?

它可以让你快速入门。

import web

urls = (
    '/(.*)', 'hello'
)
app = web.application(urls, globals())

class hello:        
    def GET(self, name):
        if not name: 
            name = 'World'
        return 'Hello, ' + name + '!'

if __name__ == "__main__":
    app.run()