zoukankan      html  css  js  c++  java
  • web笔记

    mvc是一种开发模型,实现了低耦合和高内聚    model view controller
    wsgi 是由python开发的  web server gateway interface
    web框架
              django
               tornodo   是通过协程
               flask    轻量型的框架
               web2  web.py
     
    MVC 流程    模型-视图-控制器
        request --> controller.function  ---> model --> view  --> response
                  
     
     
    MTV流程
              request -->  view.function ---> model  -->  template --> response
            
    django可识别的视图需要满足的条件:
              1.第一个参数的类型:HttpResquest
              2.返回HttpResponse实例
     
     ----------------------------------------------------------------------更新与2015/12/06 -------------------------------------------------------------------------
     
  • 相关阅读:
    UVA 11198 Dancing Digits
    UVA 10085 The most distant state
    UVA 321 The New Villa
    UVA 10422 Knights in FEN
    poj2876
    poj2895
    poj2914
    poj2892
    poj2941
    LD SDK LDCControlDll 中 CXMLFile的进一步使用方法,建议以后改进
  • 原文地址:https://www.cnblogs.com/xiaoli2018/p/5023972.html
Copyright © 2011-2022 走看看