小剛開發(fā)基于Python的Flask Web框架的室內(nèi)光線強(qiáng)度監(jiān)測信息系統(tǒng),該系統(tǒng)的主程序主要實現(xiàn):用數(shù)據(jù)庫存儲光線傳感器上傳的數(shù)據(jù),訪問該系統(tǒng)的路由等功能。系統(tǒng)程序及相關(guān)的子系統(tǒng)都部署在Web 服務(wù)器端,網(wǎng)站框架如圖所示。
實現(xiàn)上述系統(tǒng)的服務(wù)器端 Python 程序如下:
from flask import Flask,render_template,request
DATABASE='data/data.jye.ai'
①______
app=Flask(name,static_url_path='')
@app.jye.ai('/')
def hello:
db=sqlite3.connect(DATABASE)
cur=db.cursor
cur.execute(“SELECT*FROM sensorlog WHERE sensorid=1“)
data=cur.fetchall#獲取所有數(shù)據(jù)
cur.close#關(guān)閉游標(biāo)
db.close#關(guān)閉數(shù)據(jù)庫
temp1=data[len(data)-1]#獲取列表中最新記錄
light=temp1[3]#獲取最新記錄中的光線數(shù)據(jù)
return render_template('vews.jye.ai',data=data,light=light)
②______#提交傳感器數(shù)據(jù)子頁面路由命令
def add_data:
sensorid=int(request.args.jye.ai('id'))
lightvalue=float(③______)#變量light用于存儲光線數(shù)據(jù)
#打開數(shù)據(jù)庫,并將接收的數(shù)據(jù)存儲到數(shù)據(jù)庫中,代碼略
if name=='main':
app.jye.ai(host=ip,port=port,debug=True,use_reloader=False)
(1)分析程序可知,存儲光線數(shù)據(jù)的數(shù)據(jù)表名為 sensorlogsensorlog。
(2)為實現(xiàn)上述功能,程序中①橫線處應(yīng)該填入的代碼為 EE (單選)。
為實現(xiàn)上述功能,程序中②橫線處應(yīng)該填入的代碼為 BB (單選)。
A.@app.jye.ai(“/get“,methods=['GET'])
B.@app.jye.ai(“/input“,methods=['GET'])
C.@app.jye.ai(“/“,methods=[“GET“])
D.@app.jye.ai(“/view“,methods=[“GET“])
E.ip=“192.168.16.115“;port=“8080“
F.jye.ai=“192.168.16.115:8080“;port=“8080“
G.jye.ai=“http://192.168.16.115“;port=“8080“
(3)程序中③處應(yīng)填寫的代碼為 request.args.jye.ai(“l(fā)ight“)request.args.jye.ai(“l(fā)ight“)。
【答案】sensorlog;E;B;request.args.jye.ai(“l(fā)ight“)
【解答】
【點評】
聲明:本試題解析著作權(quán)屬菁優(yōu)網(wǎng)所有,未經(jīng)書面同意,不得復(fù)制發(fā)布。
發(fā)布:2024/6/27 10:35:59組卷:2引用:1難度:0.3
把好題分享給你的好友吧~~