搜索结果
查询Tags标签: SimpleRateThrottle,共有 3条记录-
根据ip进行频率限制
# 写一个类,继承SimpleRateThrottle,只需要重写get_cache_key from rest_framework.throttling import ScopedRateThrottle,SimpleRateThrottle#继承SimpleRateThrottle class MyThrottle(SimpleRateThrottle):scope=luffydef get_cache_key(self, request, view):prin…
2022/4/8 6:20:10 人评论 次浏览 -
drf中仿照SimpleRateThrottle自定制频率类
刚开始弄的时候不知道出现了什么问题,计时出现负数,然后无法继续访问,后来也没调整什么就可以使用了 先放总代码from django.core.exceptions import ImproperlyConfiguredfrom rest_framework.throttling import SimpleRateThrottle from rest_framework.throttling i…
2021/10/27 23:16:09 人评论 次浏览 -
drf中仿照SimpleRateThrottle自定制频率类
刚开始弄的时候不知道出现了什么问题,计时出现负数,然后无法继续访问,后来也没调整什么就可以使用了 先放总代码from django.core.exceptions import ImproperlyConfiguredfrom rest_framework.throttling import SimpleRateThrottle from rest_framework.throttling i…
2021/10/27 23:16:09 人评论 次浏览