一個簡單額Python MVC架構(3)

來源:互聯網
上載者:User

標籤:

MVC中的M已經介紹完了,C和V都是使用者代碼,先看幾個工具類:
A)全域變數類,使用者定義全域變數和一個用於產生普通對象的類型:

gl_A=1gl_B=‘a‘class Obj:    def __init__(self):        self.Obj=self
如果需要,大家可以定義自己的全域性變數。
B)OsHelper.用於動態載入模組,擷取類型

import impimport inspectimport uuid#載入控制模組和類,讀取檔案,擷取GUIDclass OsHelper:    @staticmethod    def LoadModule(controllerName):        return imp.load_source(controllerName,controllerName+‘.py‘)    @staticmethod    def LoadClass(module,classname,ignorecase=True):        if ignorecase :            theMembers = inspect.getmembers(module)            for theM in theMembers:                if theM[0].upper()==classname.upper():                    return theM[1]        else:            return getattr(module,classname)    @staticmethod    def GetGuid():        return uuid.uuid1().__str__().replace(‘-‘,‘‘)    @staticmethod    def ReadFile(filepath,AEncoding=‘utf-8‘):        if AEncoding==None:            AEncoding=‘utf-8‘        theFile = open(file=filepath,encoding=AEncoding)        try:            return theFile.read()        finally:            theFile.close()
C)HtmlHelper模組,主要提供html處理的類。這裡提供了一個自動根據表單域給實體賦值的方法和Cookie處理的類。大家可以根據自己的需要增加自己的方法。

from os import environimport cgi, cgitbfrom ListAttr import ObjOptclass HtmlTools:    #自動根據表單域給對象賦值    @staticmethod    def TryUpdate(obj,form):        theProperties = ObjOpt.GetPropertyNames(obj)        theObjName = ObjOpt.GetClassName(type(obj))        theRet={}        if theProperties != None:                for theP in theProperties:                try:                    theVal =form.getvalue(theP)                    if theVal!=None:                        setattr(obj,theP,theVal)                    else:                        theVal =form.getvalue(theObjName+‘.‘+theP)                        if theVal!=None:                            setattr(obj,theP,theVal)                    if theVal!=None:                        theRet[theP] = theVal                except Exception:                    return theRet        return theRet    #擷取Cookie資訊,字典方式返回.    @staticmethod    def GetCookies(Environ):        theRet={}        theCookieStr=Environ.get(‘HTTP_COOKIE‘)        if theCookieStr!=None:            for cookie in theCookieStr.split(";"):                (key, value ) = cookie.split(‘=‘)                theRet[key]=value        return theRet



一個簡單額Python MVC架構(3)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.