gpt4 book ai didi

django - 如何在 django-tastypie 中获取授权用户对象

转载 作者:行者123 更新时间:2023-12-02 05:07:05 25 4
gpt4 key购买 nike

我需要在 hydrate 方法中获得授权的用户对象,类似这样:

class SalepointResource(ModelResource):
def hydrate(self, bundle):
user = bundle.request.user

但是这里的request 是一个空的HttpRequest 对象,并且没有用户方法,尽管用户是授权的。有没有办法获取用户对象?

最佳答案

对于 TastyPie 0.9.15,我发现它有效:

def hydrate_user(self, bundle):
bundle.obj.user = bundle.request.user
return bundle

无需子类化 ModelResource。这里的 user 是模型和资源的 ForeignKey。我将此作为答案发布,因为虽然它看起来很简单,但我花了很长时间才弄明白。

关于django - 如何在 django-tastypie 中获取授权用户对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9785454/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com