码迷,mamicode.com
首页 > 其他好文 > 详细

tornado框架的get方法传递参数

时间:2018-05-09 15:15:06      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:https   color   端口   elf   添加   loop   www.   技术分享   options   

tornado框架的get方法传递参数,代码:

# encoding: utf-8


"""
@version: ??
@author: andu99
@contact: andux@qq.com
@site: http://www.cnblogs.com/andu99/
@software: PyCharm
@file: main.py
@time: 2018/5/9 0009 上午 11:05
"""

from tornado.ioloop import IOLoop
from tornado.httpserver import HTTPServer
from tornado.options import define, options, parse_command_line
from tornado.web import RequestHandler, Application

# 自定义参数,下面调用这个参数http_server.listen(options.port)
define(port, type=int, default=8000, help=服务器端口)


class IndexHandler(RequestHandler):
    """主页处理类"""

    def get(self):
        """get请求"""
        canshu1 = self.get_argument(name, andu99)
        canshu2 = self.get_arguments(name)
        self.write(canshu1)
        # self.write(str(canshu2))


if __name__ == __main__:
    parse_command_line()
    app = Application([
        (/, IndexHandler),
    ], dubug=True)
    http_server = HTTPServer(app)
    http_server.listen(options.port)
    IOLoop.current().start()

参数1  canshu1 的方式,self.get_argument(参数名,默认参数值) :

技术分享图片

可以添加参数,就覆盖了默认参数值:

技术分享图片

get_arguments 是参数列表,输出需要转换成字符串列表

 技术分享图片

技术分享图片

技术分享图片

技术分享图片

 

 修改pycharm的代码需要重新运行main.py文件。

 

tornado框架的get方法传递参数

标签:https   color   端口   elf   添加   loop   www.   技术分享   options   

原文地址:https://www.cnblogs.com/andu99/p/9013491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!