1
每http://pyramid-cookbook.readthedocs.org/en/latest/views/chaining_decorators.html我可以裝飾一個金字塔的看法:確保在金字塔的應用程序每個視圖都裝飾有定製的裝飾
@view_config(decorator=a_special_decorator, renderer='json')
def myview(request):
return {'a':1}
確定的,但我需要確保在金字塔的應用程序的每個視圖裝飾有a_special_decorator
。有沒有一種方法可以確保在實時應用程序或測試階段,它是如此?
您希望用這個裝飾器實現什麼功能? – matino 2015-04-05 19:24:56
我想爲每個視圖提供像View Model這樣的東西。 – LetMeSOThat4U 2015-04-07 11:14:17