基本情况: 最近折腾 Flask,学着做了一个小项目练手。会用简单的 html+css,不会 js
app.py
文件内容如下:
# app.py
import random
from flask import Flask, render_template
app = Flask(__name__)
### One douban film short comment ###
### random output ###
@app.route("/", methods=["GET"])
def index():
return render_template("index.html")
@app.route("/douban", methods=['GET'])
def Comment():
with open('douban.txt', 'r') as f:
lines = f.readlines()
num = random.choice(range(len(lines)))
return lines[num]
if __name__ == "__main__":
app.run()
模板文件夹 templates 下 index.html
文件内容如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Flask</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div id="comment"></div>
<script>
$.get('/douban').done(function (data) {
var para=document.createElement("p");
var node=document.createTextNode(data);
para.appendChild(node);
var element=document.getElementById("comment");
element.appendChild(para);
});
</script>
</body>
</html>
现在可以做到的是,按 F5,首页会重新加载一条豆瓣电影短评,但这样不太方便。
所以我想如果在页面内添加一个刷新按钮,点击后 局部刷新 <div id="comment"> 会好很多,请问该怎么做呢
P.S 附上 douban.txt
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.