if判断语句


在模板中使用if判断语句

# 后端代码
@app.route('/')
def index():
    return render_template('index.html', name='张三')


# 前端代码
{% if name == '张三' %}
  欢迎张三访问首页
{% else %}
  欢迎访问首页
{% endif %}

results matching ""

    No results matching ""