返回顶部
首页 > 资讯 > 后端开发 > Python >python include标签如何使用
  • 124
分享到

python include标签如何使用

2023-07-05 08:07:13 124人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

这篇文章主要介绍了python include标签如何使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python include标签如何使用文章都会有所收获,下面我们一起来看看吧。inc

这篇文章主要介绍了python include标签如何使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python include标签如何使用文章都会有所收获,下面我们一起来看看吧。

include标签如何使用?

include标签的使用

在讲python include标签使用之前,我们新建一个include_demo项目

截图如下

python include标签如何使用

项目新建好了,再在templates文件下新建一个index.html文件,代码如下:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>        *{margin:0;padding:0;}        ul{list-style: none;}        a{text-decoration: none;            color: #ffffff;}        nav,footer,.main{width:1000px; height:40px; margin:0 auto;}        ul{width: 1000px; height:40px; line-height: 40px;            background-color:#000000;}        li{width:120px; height:40px; line-height:40px; text-align: center;        float:left;}        .main{clear:both; line-height:40px; background-color:pink;}        footer{height:40px;  background-color: green;}    </style></head><body>         <nav>            <ul>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >首页</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >关于我们</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >产品中心</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >新闻中心</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >服务宗旨</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >联系我们</a></li>            </ul>        </nav>        <div class="main">            网站首页主体部分        </div>       <footer>            网站首页footer部分       </footer> </body></html>

然后在include_demo.py页面渲染一下index模板文件,代码如下:

from flask import Flask,render_template app = Flask(__name__) @app.route('/')def hello_world():    return render_template("index.html")  if __name__ == '__main__':    app.run(debug=True)

运行include_demo.py文件,运行结果如下:

python include标签如何使用

在这里主要是为了方便讲解include标签,所有没太注重前端页面部分。

通过上面index.html文件就能发现,我将公共和私有代码部分都在一块,假设网站有几十个页面,我将所有公共代码和私有代码

都放一块,如果有一天要修改某个公共代码块,哪就得修改几十个页面,那将是件非常麻烦的事。为了方便管理项目,我们将页面公共、私有代码部分抽取出来。

我们新建一个header.html文件,把CSS样式及nav标签内容复制到header.html页面中。

代码如下:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>        *{margin:0;padding:0;}        ul{list-style: none;}        a{text-decoration: none;            color: #ffffff;}        nav,footer,.main{width:1000px; height:40px; margin:0 auto;}        ul{width: 1000px; height:40px; line-height: 40px;            background-color:#000000;}        li{width:120px; height:40px; line-height:40px; text-align: center;        float:left;}        .main{clear:both; line-height:40px; background-color:pink;}        footer{height:40px;  background-color: green;}    </style></head><body>      <nav>            <ul>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >首页</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >关于我们</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >产品中心</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >新闻中心</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >服务宗旨</a></li>                <li><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >联系我们</a></li>            </ul>        </nav></body></html>

然后新建一个footer.html文件,把footer标签中的内容复制到该文件中。

代码如下:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title></head><body>     <footer>            网站首页footer部分     </footer>     </footer></body></html>

我们在运行主app文件,结果如下:

python include标签如何使用

(^-^),为啥没有居中,背景色也不见了??因为我们没有把样式引入进来(嗯,页面太丑了,没法看了,赶紧关了!!)

OK!我们将公共代码抽取出来后。记得在index.html文件中用include标签导入header、footer代码块,代码如下:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title></head><body>   {% include "header.html" %}        <div class="main">            网站首页主体部分        </div>    {% include "footer.html" %}</body></html>

再运行主app文件,结果如下:

python include标签如何使用

关于“python include标签如何使用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“python include标签如何使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网Python频道。

--结束END--

本文标题: python include标签如何使用

本文链接: https://lsjlt.com/news/350544.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • python include标签如何使用
    这篇文章主要介绍了python include标签如何使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇python include标签如何使用文章都会有所收获,下面我们一起来看看吧。inc...
    99+
    2023-07-05
  • python include标签的使用方式及说明
    目录include标签如何使用?include标签的使用截图如下总结include标签如何使用? include标签的使用 在讲python include标签使用之前,我们新建一个...
    99+
    2023-03-02
    python include标签 include标签的使用 python include
  • Android中使用include标签和merge标签重复使用布局
    尽管Android提供了各种组件来实现小而可复用的交互元素,你也可能因为布局需要复用一个大组件。为了高效复用完整布局,你可以使用<include/>和<mer...
    99+
    2022-06-06
    布局 merge include Android
  • 解析android中include标签的使用
    在一个项目中我们可能会需要用到相同的布局设计,如果都写在一个xml文件中,代码显得很冗余,并且可读性也很差,所以我们可以把相同布局的代码单独写成一个模块,然后用到的时候可以通过...
    99+
    2022-06-06
    include Android
  • html include标签的用法详解
    HTML的include标签是一种用于在HTML文件中包含其他文件内容的标签,它可以将一个外部文件的内容嵌入到当前的HTML文件中。...
    99+
    2023-08-29
    html
  • python的标签Label如何使用
    本篇内容介绍了“python的标签Label如何使用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!图形用户界面tkinter之标签Label...
    99+
    2023-07-02
  • 如何使用Include Cpp
    这篇文章主要介绍“如何使用Include Cpp”,在日常操作中,相信很多人在如何使用Include Cpp问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”如何使用Includ...
    99+
    2024-04-02
  • mybatis中映射文件include标签的应用
    目录mybatis映射文件include标签应用1.引用同一个xml中的sql片段2.引用公用的sql片段3.对于多个xml文件需要同时引用一段相同的mybatis sql xml ...
    99+
    2024-04-02
  • HTML中sup标签和sub标签如何使用
    本篇内容主要讲解“HTML中sup标签和sub标签如何使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“HTML中sup标签和sub标签如何使用”吧! 在HT...
    99+
    2024-04-02
  • ECSHOP模版系统Assign和Include模版标签使用介绍
    ECSHOP模版系统Assign和Include模版标签介绍,assign 用于在模板被执行时为模板变量赋值,Include 标签用于在当前模板中包含其它模板. 当前模板中的变量在被包含的模板中可用。 必须指定 file...
    99+
    2022-06-12
    Assign Include
  • HTML5 article标签如何使用
    本文小编为大家详细介绍“HTML5 article标签如何使用”,内容详细,步骤清晰,细节处理妥当,希望这篇“HTML5 article标签如何使用”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起...
    99+
    2024-04-02
  • 如何使用html5标签details
    这篇文章给大家分享的是有关如何使用html5标签details的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。本教程操作环境:windows7系统、HTML5版、Dell G3电脑...
    99+
    2024-04-02
  • html如何使用acronym标签
    这篇文章主要为大家展示了“html如何使用acronym标签”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“html如何使用acronym标签”这篇文章吧。 &...
    99+
    2024-04-02
  • Dreamweaver如何使用标签库
    小编给大家分享一下Dreamweaver如何使用标签库,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!在【编辑】菜单按钮下方,我们点击标签库按钮。或者,我们可以使用...
    99+
    2023-06-08
  • HTML5中ol标签如何使用
    本篇文章为大家展示了HTML5中ol标签如何使用,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。定义和用法<ol> 标签定义有序列表。HTML 4.01 ...
    99+
    2024-04-02
  • html5的audio标签如何使用
    这篇文章主要介绍“html5的audio标签如何使用”,在日常操作中,相信很多人在html5的audio标签如何使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”html5的...
    99+
    2024-04-02
  • html中如何使用fieldset标签
    这篇文章主要为大家展示了“html中如何使用fieldset标签”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“html中如何使用fieldset标签”这篇文章吧...
    99+
    2024-04-02
  • HTML5的embed标签如何使用
    这篇文章主要介绍了HTML5的embed标签如何使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇HTML5的embed标签如何使用文章都会有所收获,下面我们一起来看看吧。 ...
    99+
    2024-04-02
  • HTML的datalist标签如何使用
    本篇内容介绍了“HTML的datalist标签如何使用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成! &...
    99+
    2024-04-02
  • HTML的DIV标签如何使用
    这篇文章主要介绍了HTML的DIV标签如何使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇HTML的DIV标签如何使用文章都会有所收获,下面我们一起来看看吧。首先要认识DIV...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作