使用select_related合并值

huangapple go评论100阅读模式
英文:

combine values with select_related

问题

我有两个模型,"Product" 和 "user",并且 post 模型有一个指向 user 的外键。我想要查询帖子并与用户联接,只获取 "username" 和 "name" 字段。

我尝试使用以下代码:

Product.objects.values('id', 'title', 'user__username', 'user__name')

我得到了以下结果:

{
   id,
   title,
   username,
   name
}

但是我想要类似这样的结果:

{
   id,
   title,
   user:{
    username,
    name
   }
}
英文:

I have to models "Product" and "user" and post model has user foreignKey I want to query posts join with user with only ("username","name) fields

I tried to use

Product.objects.values('id', 'title',"user__username","user__name")

and i got

{
   id,
   title,
   username,
   name
}

but i want something like this

{
   id,
   title,
   user:{
    username,
    name
   }
}

答案1

得分: 1

你可以使用以下代码:

Product.objects.annotate(user_info=JSONObject(username="user__username", name="user__name")).values("id", "title", "user_info")

新的键(user_info)不应与你的模型键冲突。

如果你使用drf:

class ProductSerializer(serializers.ModelSerializer):
  user = UserSerializer()
  class Meta:
      fields = [
         "id",
         "title",
         "user",
      ]

请注意,这只是代码的翻译部分。

英文:

you can use this

Product.objects.annotate(user_info=JSONObject(username="user__username", name="user__name")).values("id", "title", "user_info")

New key (user_info) should not be in conflict with your model keys

If you use drf:

class ProductSerializer(serializers.ModelSerializer):
  user=UserSerializer()
  class Meta:
      fields = [
         "id",
         "title",
         "user",
      ]

huangapple
  • 本文由 发表于 2023年7月14日 00:13:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/76681450.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定