有很多字段时管理Django的创建方法

时间:2019-06-30 04:13:57

标签: python django design-patterns

我正在从事在后台使用django的项目。我有一个与用户相关的模型调用配置文件。个人资料模型有10个以上的字段,当尝试更新用户个人资料时,我用于更新所有这些字段的代码将是这样

class UpdateProfile(graphene.Mutation):
    class Arguments:
        input = types.ProfileInput(required=True)

    success = graphene.Boolean()
    errors = graphene.List(graphene.String)
    profile = graphene.Field(schema.ProfileNode)

    @staticmethod
    def mutate(self, info, **args):
        is_authenticated = info.context.user.is_authenticated
        data = args.get('input')
        if not is_authenticated:
            errors = ['unauthenticated']
            return UpdateProfile(success=False, errors=errors)
        else:
            profile = Profile.objects.get(user=info.context.user)
            profile = models.Profile.objects.get(profile=profile)
            profile.career = data.get('career', None)
            profile.payment_type = data.get('payment_type', None)
            profile.expected_salary = data.get('expected_salary', None)
            profile.full_name = data.get('full_name', None)
            profile.age = data.get('age', None)
            profile.city = data.get('city', None)
            profile.address = data.get('address', None)
            profile.name_of_company = data.get('name_of_company', None)
            profile.job_title = data.get('job_title', None)
            profile.zip_code = data.get('zip_code', None)
            profile.slogan = data.get('slogan', None)
            profile.bio = data.get('bio', None)
            profile.website = data.get('website', None)
            profile.github = data.get('github', None)
            profile.linkedin = data.get('linkedin', None)
            profile.twitter = data.get('twitter', None)
            profile.facebook = data.get('facebook', None)
            profile.image=info.context.FILES.get(data.get('image', None))
            profile.save()
            return UpdateProfile(profile=profile, success=True, errors=None)

所以我的问题是,假设,如果有超过20、30个字段,那么如何在更新这些字段时设计代码? (仅考虑视图部分)

1 个答案:

答案 0 :(得分:0)

您可以为从前端获得的任何值制作kwargs(均值字典),然后可以解压缩这些值。如果您不了解,可以打开包装概念。

让我们假设kwargs是您的词典,并且您只想更新职业和付款方式。

kwargs = {}

kwargs['carrer'] = data.get('career', None)
kwargs['payment_type'] = data.get('payment_type', None)

Profile.objects.filter(user=info.context.user).update(**kwargs)