-
與
decorator_from_middleware
類似,但返回一個函數,該函數接受要傳遞給 middleware_class 的參數。例如,cache_page()
CacheMiddleware
創建的,如下所示:cache_page = decorator_from_middleware_with_args(CacheMiddleware) @cache_page(3600) def my_view(request): pass
本文介紹django.utils.decorators.decorator_from_middleware_with_args
的用法。
聲明
decorator_from_middleware_with_args(middleware_class)[source]
相關用法
- Python decimal.Decimal.remainder_near用法及代碼示例
- Python decimal.Context.create_decimal_from_float用法及代碼示例
- Python decimal.Decimal.compare用法及代碼示例
- Python decimal.Decimal.exp用法及代碼示例
- Python decimal.Decimal用法及代碼示例
- Python decimal.localcontext用法及代碼示例
- Python decimal.Decimal.from_float用法及代碼示例
- Python decimal.InvalidOperation用法及代碼示例
- Python decimal.Context.create_decimal用法及代碼示例
- Python OpenCV destroyAllWindows()用法及代碼示例
- Python Tkinter destroy()用法及代碼示例
- Python delattr() and del()用法及代碼示例
- Python delattr()用法及代碼示例
- Python degrees() and radians()用法及代碼示例
- Python dask.dataframe.Series.apply用法及代碼示例
- Python dask.dataframe.to_records用法及代碼示例
- Python distributed.protocol.serialize.register_generic用法及代碼示例
- Python dask.dataframe.DataFrame.applymap用法及代碼示例
- Python dask.dataframe.Series.clip用法及代碼示例
- Python dask.array.stats.ttest_ind用法及代碼示例
- Python dask.array.ma.masked_values用法及代碼示例
- Python dask.array.divmod用法及代碼示例
- Python distributed.get_task_metadata用法及代碼示例
- Python dask.compute用法及代碼示例
- Python dask.dataframe.Series.prod用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.utils.decorators.decorator_from_middleware_with_args。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。