flask-include、set、with

flask-include、set、with


  • include: include with the django similar to a block of code html directly embedded in another file html
    • {%   include    'html    path'    %}
  • set: Cache a variable in html, if the variable is not set the cache with the parcel, then the global variables can be used in this html of
    • {%   set    name='ivy'   %}
  • with: the definition of a code block, code block inside the variables defined only in the block which
    • with the definition of variables:
      • {%   with   name='ivy'  %}
        • content....
      • {%  endwith   %}
    • with no cache variable:
      • {%  with   %}
        • content...
      • {%   endwith  %}

Guess you like

Origin www.cnblogs.com/ivy-blogs/p/11536496.html