实现上述系统的服务器端Python程序如下:
#注意:划横线①③处有选项可选择,②处为填空题
from flask import Flask,render_template,request #导入Flask库函数
app=Flask(__name__)
@app.route("/")
def index():
#获取采集的数据并存储到列表变量data,代码略
return render_template("vews.html",data=data)
① 1 #数据采集子页面路由命令
def get( ):
id=int(request.args.get("id")) #获取URL中“id=1”后的数据“1”
d=float( ② ) #变量d存储采集到的光线数据
#打开数据库,并将接收的数据存储到数据库中,代码略
return "get data ok"
#其他系统子页面路由,代码略
if __name__=='__main__':
app.run( ③ ) #启动Web服务器
①处选填代码为,
③处选填代码为,
A. @app.route("/s")
B. @app.route("/s?id=1&d=23.0")
C. @app.route("/get",methods=["GET"])
D. @app.route("/s",methods=["GET"])
E. host="192.168.1.100",port=5000
F. host="192.168.1.100:5000",port=5000
G. host="http://192.168.1.100",port=5000
程序中②处应填写的代码为。