zoukankan      html  css  js  c++  java
  • 学习Flask框架

     
    # -*- encoding: utf-8 -*-
    #导包
    from flask import Flask
    
    #建立flask对象
    app = Flask(__name__)
    
    #使用flask路由器 指定网址和控制器
    @app.route("/")
    def index():
    return "hello world 你好世界"
     
    #使用程序入口将flask应用启动
    if __name__ == "__main__":
    app.run(debug=True)
    

    首先在学习Flask框架时应该学会基本的网页链接,注意utf-8码不能错误,

    debug可以为True,这样在随意写入网页信息时就不用重新启动服务了。
     
     
     
    C:UsersLenovowwwweb>python zida.py
     * Serving Flask app "zida" (lazy loading)
     * Environment: production
       WARNING: Do not use the development server in a production environment.
       Use a production WSGI server instead.
     * Debug mode: on
     * Restarting with stat
     * Debugger is active!
     * Debugger PIN: 234-424-956
     * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
    

      


    在CMD命令框下操作,想要启动浏览器查看网页时,可以直接输入python + 自己的文件名 
    然后在浏览器里输入http://localhost:5000/ 
     
  • 相关阅读:
    Ubuntu16.04.1 安装Nginx
    Ubuntu16.04.1 安装Redis-Cluster
    SeekBar的简单使用
    Async异步处理
    SQLite
    Shareprefrence
    android中的主线程
    Fragment的简单使用
    ArrayAdapter的使用
    用Intent传递对数
  • 原文地址:https://www.cnblogs.com/wjya/p/10139117.html
Copyright © 2011-2022 走看看