作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在 token 创建后使 token 过期,最长持续时间为 1 分钟以满足安全要求。我的函数看起来像这样,但我认为这样做的方式不对,我想知道在 1 分钟后使 token 过期的最佳方法是什么?我正在使用两次差异的技术。以下功能适用于 models.py
def is_token_expired(self):
if self.token == None:
return False
now = datetime.datetime.utcnow().replace(tzinfo=utc)
timediff = now - self.created_at
if timediff.seconds / 60 - 1 > 0:
return True
return False
最佳答案
我认为归档目标的优雅方式是利用 django cache .
示例代码:
class Foo(models.Model):
...
def save(self, *args, **kwargs):
if not self.pk:
# save the token when record created
cache.set('token_key', '<Your token>', timeout=60)
super(Foo, self).save(*args, **kwargs)
@property
def is_token_expired(self):
# check if the token expired
return cache.get('token_key') is None
@property
def token(self):
# get token
return cache.get('token_key')
关于python - 如何在 1 分钟后使 token 过期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59122811/
我是一名优秀的程序员,十分优秀!