leemengtaiwan
10/9/2017 - 11:38 AM

讓jinja2 template 確保variable有被定義(傳進來)才使用該variable的值

return render_template('index.html', prob=prob)
{% if prob is defined and prob > 50 %}
    <h4>We're {{prob}} % sure it's a cat image :D</h4>
{% elif prob is defined %}
    <h4>We don't think it's a cat image :O</h4>
{% endif %}