首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

python前后端连接程序

一、概述

编写一个程序,使其能够连接前后端

二、大体思路

利用python中的flask、json模块实现连接前后端,Flask是当下流行的Web框架,它是用Python实现的。

三、代码

from flask import Flask,render_template,request

import MySQLdb as mysql

import json

conn = mysql.connect(user='root', passwd='oracle', host='localhost', db='memory')

conn.autocommit(True)

cur = conn.cursor()

app = Flask(__name__)

@app.route('/')

def index():

return render_template('index.html')

tmp_time = 0

@app.route('/data') //定义路由到增量数据获取页面,用作获取增量数据和测试用

def data():

global tmp_time

if tmp_time>0:

sql = 'select * from memory where time>%s' % (tmp_time/1000)

else:

sql = 'select * from memory'

cur.execute(sql)

arr = []

for i in cur.fetchall(): //这里实现增量数据的获取

arr.append([i[1]*1000, i[0]])

if len(arr)>0:

tmp_time = arr[-1][0]

return json.dumps(arr)

if __name__=='__main__':

app.run(host='0.0.0.0', port=9092, debug=True)

  • 发表于:
  • 原文链接http://kuaibao.qq.com/s/20180224G16JME00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券