當前位置:成語大全網 - 新華字典 - python 哪個版本支持裝飾器

python 哪個版本支持裝飾器

我們先來說說Flask,深入探討Flask如何實現在函數上方寫“@app.route()”就能在因特網上輸出函數的執行結果。

下面是Flask主頁給我們的第壹個例子,我們現在就由它入手,深入理解“@app.route()”是如何工作的。

Python

app = Flask(__name__)

@app.route("/")

def hello():

return "Hello World!"

@app.route和其它裝飾器

要想明白“@app.route()”的工作原理,我們首先需要看壹看Python中的裝飾器(就是以“@”開頭的那玩意,下面接著函數定義)。

究竟什麽是裝飾器?沒啥特別的。裝飾器只是壹種接受函數(就是那個妳用“@”符號裝飾的函數)的函數,並返回壹個新的函數。

當妳裝飾壹個函數,意味著妳告訴Python調用的是那個由妳的裝飾器返回的新函數,而不僅僅是直接返回原函數體的執行結果。

還不是很明白?這裏是壹個簡單的例子:

Python

#

This is our decorator

def

simple_decorator(f):

#

This is the new function we're going to return

#

This function will be used in place of our original definition

def

wrapper():

print

"Entering Function"

f()

print

"Exited Function"

return

wrapper

@simple_decorator

def

hello():

print

"Hello World"

hello()

運行上述代碼會輸出以下結果:

Entering Function

Hello World

Exited Function

很好!

現在我們有點明白怎樣創建我們自己的“@app.route()”裝飾器了,但妳可能會註意到有壹個不同點,就是我們的simple_decorator不可以接受任何參數, 但“@app.route()”卻可以。

那麽我們怎樣才能給我們的裝飾器傳參數?要實現這個我們只需創建壹個“decorator_factory”函數,我們調用這個函數,返回適用於我們函數的裝飾器。現在看看如果實現它。

Python

def decorator_factory(enter_message, exit_message):

# We're going to return this decorator

def simple_decorator(f):

def wrapper():

print enter_message

f()

print exit_message

return wrapper

return simple_decorator

@decorator_factory("Start", "End")

def hello():

print "Hello World"

hello()

給我們的輸出是:

Start

Hello World

End

請註意在我們寫@decorator_factory(“Start”, “End”)時,我們實際調用的是decorator_factory函數,實際返回的裝飾器已經被用上了,代碼很整潔,對吧?

把“app”放進“app.route”

現在我們掌握了裝飾器怎樣工作的全部前置知識 ,可以重新實現Flask API的這個部分了,那麽把我們的目光轉移到“app”在我們Flask應用中的重要地位上面來。

在開始解釋Flask對象裏面發生了什麽之前,我們先創建我們自己的Python類NotFlask。

Python

class

NotFlask():

pass

app

=

NotFlask()

這不是個很有趣的類,不過有壹樣值得註意,就是這個類的方法也可以被用作裝飾器,所以讓我們把這個類寫得更有趣壹點,加壹個稱作 route的方法,它是壹個簡單的裝飾器工廠。

Python

class NotFlask():

def route(self, route_str):

def decorator(f):

return f

return decorator

app = NotFlask()

@app.route("/")

def hello():

return "Hello World!"

這個裝飾器和我們之前創建的那些最大的不同,在於我們不想修改被我們裝飾的函數的行為,我們只是想獲得它的引用。

所以,最後壹步是我們打算去利用壹個特性,就是用裝飾器函數的副產品去保存壹個提供給我們的路徑之間的鏈接,裝飾器函數應該與它關聯起來。

為了實現這個,我們給我們的NotFlask對象加壹個“routes”字典,當我們的“decorator”函數被調用,路徑將被插入新字典中函數對應的位置。

Python

class

NotFlask():

def

__init__(self):

self.routes

=

{}

def

route(self,

route_str):

def

decorator(f):

self.routes[route_str]

=

f

return

f

return

decorator

app

=

NotFlask()

@app.route("/")

def

hello():

return

"Hello World!"

現在我們就要完成了!可如果沒法訪問內部的視圖函數,保存路徑的字典又有什麽用?讓我們加入壹個方法serve(path),當給定的路徑存在時運行壹個函數並給們我結果,當路徑尚未註冊時則拋出壹個異常。

Python

class NotFlask():

def __init__(self):

self.routes = {}

def route(self, route_str):

def decorator(f):

self.routes[route_str] = f

return f

return decorator

def serve(self, path):

view_function = self.routes.get(path)

if view_function:

return view_function()

else:

raise ValueError('Route "{}"" has not been registered'.format(path))

app = NotFlask()

@app.route("/")

def hello():

return "Hello World!"

在這個系列我們只關註重現那些熱門庫提供的友好API,所以鉤掛“serve”方法實現壹個HTTP服務器其實有壹點超出本文的範圍,當然結果是確定的,運行下述片段:

Python

app

=

NotFlask()

@app.route("/")

def

hello():

return

"Hello World!"

print

app.serve("/")

我們會看到:

Hello World!

我們已經完成了壹個的Flask網頁上第壹個例子的非常簡單的重現,讓我們寫壹些快速測試檢測我們簡單重現的Flask的“@app.route()”是否正確。

Python

class TestNotFlask(unittest.TestCase):

def setUp(self):

self.app = NotFlask()

def test_valid_route(self):

@self.app.route('/')

def index():

return 'Hello World'

self.assertEqual(self.app.serve('/'), 'Hello World')

def test_invalid_route(self):

with self.assertRaises(ValueError):

self.app.serve('/invalid')

吸口氣。

完全正確!所以,僅僅是壹個簡單的包含壹個字典的裝飾器, 就重現了Flask的“app.route()”裝飾器的基本的行為。

在本系列的下壹篇,也是Flask的app.route()的最後壹篇,將通過解析下面這個例子來解釋動態URL模式是如何工作。

Python

html-script:

false

]app

=

Flask(__name__)

@app.route("/hello/<username>")

def

hello_user(username):

return

"Hello {} !".format(username)