码迷,mamicode.com
首页 > 微信 > 详细

微信小程序连接Tornado

时间:2017-09-18 19:44:39      阅读:540      评论:0      收藏:0      [点我收藏+]

标签:ati   /usr   microsoft   settings   mil   java   utf-8   strong   handle   

自己搭建Tornado

监听8000端口, 提供给小程序访问的地址为http://127.0.0.1:8000/index

#!/usr/bin/env python
# -*- coding:utf-8 -*-

import tornado.ioloop
import tornado.web


class MainHandler(tornado.web.RequestHandler):
    def get(self):
        print(‘GET方式请求成功‘)
        self.write("123")

settings = {
    ‘template_path‘: ‘template‘,
}

application = tornado.web.Application([
    (r"/index", MainHandler),
], **settings)


if __name__ == "__main__":
    application.listen(8000)
    tornado.ioloop.IOLoop.instance().start()

微信页面js调用微信的API发送GET请求

Page({
	onLoad:function(){
		wx.request({
			url: "http://127.0.0.1:8000/index",
			data:{
			},
			method:"GET",
			success:function(res){
				console.log(res);
			}
		})
	}
})

执行结果:

技术分享

 

微信小程序连接Tornado

标签:ati   /usr   microsoft   settings   mil   java   utf-8   strong   handle   

原文地址:http://www.cnblogs.com/wuwen19940508/p/7544581.html

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