gpt4 book ai didi

python - 更新 JsonField django 中的数据

转载 作者:行者123 更新时间:2023-12-01 03:09:40 25 4
gpt4 key购买 nike

我想更新 django 中 jsonfield 中的 json 对象,我在更新数据时遇到问题。

我的模型看起来像这样 https://codeshare.io/Gbeonj

我的 json 看起来像这样 https://codeshare.io/5obDPX

所以基本上 json 有错误的数据,而不是“国民身份证”,它有“国民身份证”,所以我想更新这个 json 对象以获得正确的数据。这就是我正在谈论的内容

"info": {
"mobilePhone": "",
"firstName": "david",
"tags": [],
"middleName": "mirale",
"gender": "Male",
"documentType": "NATIONAL ID",
"beneficiary": false,
"dateOfBirth": "1995-03-04T08:01:42.165Z",
"documentNumber": "519011016721",
"dateOfBirthExact": false,
"role": "Child",
"lastName": "ABSURG0058",
"recipient": "Alternate",
"homePhone": ""
},

"documentType": "NATIONAL ID", 应为“NATIONAL ID Card”

我正在使用以下脚本来更新服务器中的 json 对象。

import django
django.setup()

import sys
reload(sys) # to re-enable sys.setdefaultencoding()
sys.setdefaultencoding('utf-8')


import json
from django.db import transaction
from maidea.apps.mobile.models import MobileDocument


office = 'sa_de'

#we fetch all the mobile documents from that have failed
uploads = MobileDocument.objects.filter(
status=MobileDocument.ERROR,
mobile_upload__office__slug=office
)

print('Number of uploads fetched: %d' %(uploads.count()))

with transaction.atomic():
for upload in uploads:
for member in upload.data['members']:
try:
doc_type_value = member['info'].get('documentType')
except:
doc_type_value = None
if doc_type_value == 'NATIONAL ID':
doc_type_value = doc_type_value.replace('NATIONAL ID', 'NATIONAL ID Card')
assert doc_type_value == 'NATIONAL ID Card'
upload.save()

问题是这个对象没有被更新,我做错了什么?

最佳答案

验证 doc_type_value 后,您不会将其设置回 upload 对象,您需要更新 upload 对象:

for upload in uploads:
data = upload.data
updated_members = []
for member in data['members']:
try:
doc_type_value = member['info'].get('documentType')
except KeyError:
pass
else:
if doc_type_value == 'NATIONAL ID':
doc_type_value = 'NATIONAL ID Card'
member['info']['documentType'] = doc_type_value
updated_members.append(member)

data['members'] = updated_members
upload.data = data
upload.save()

关于python - 更新 JsonField django 中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42989412/

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