0
有沒有辦法在@view_config level
的級別傳遞額外的參數?在@view_config decorator中傳遞額外的參數
我想用多@view_config
裝飾的方法,而是傳遞一個參數來表示,其中一個已被使用:
@view_config(renderer="shape.mak", route_name='circle_route')
@view_config(renderer="shape.mak", route_name='triangle route')
def new_model(self, fparams=None, ppath=None):
#here, I'd like to capture a variable that tells me whether the cirlce or triangle route was used to access this method
我知道我可以鞏固我的路線(例如具有形狀的路線),並添加一個額外的形狀類型的參數,但我想知道我的選擇。