我有一个 main.py 文件和一个模板文件夹,在我有 math.html 的模板文件夹内。它只是一个基本的 html 文件。在 main.py 中,我正在渲染名为 math.html 的模板。请注意,我使用的是 Flask。这是我的 main.py:from flask import Flask, render_templateimport randomapp = Flask(__name__)@app.route('/')def home(): return render_template('index.html')@app.route('/math-game')def game(): # This is the function which renders math.html num1 = random.randint(0, 100) num2 = random.randint(0, 100) return render_template('math.html', num1=num1, num2=num2)而在我的 math.html 中,我有以下代码: <!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Math Game</title></head><body><center><h1>Math Game</h1></center><h2>What is {{ num1 }} + {{ num2 }}?</h2></body></html>当我在我的网站上检查输出时,它只显示“什么是 {{ num1 }} + {{ num2 }}?”。为什么不从 main.py 中获取 num1 和 num2 的值并在此处显示它,而不仅仅是显示上面的内容?
添加回答
举报
0/150
提交
取消