以下是一种处理方法:
import json
string = "{\"name\":\"ThreadMainListItemNormalizer\",\"props\":{\"thread\":{\"threadId\":4369992,\"threadTypeId\":1,\"titleSlug\":\"sebamed-sale-extra-soft-baby-cream-ps239-anti-dandruff-shampoo-ps387\",\"title\":\"Sebamed sale - extra soft baby cream \£2.39 / anti dandruff shampoo \£3.87\",\"currentUserVoteDirection\":\"\",\"commentCount\":0,\"status\":\"Activated\",\"isExpired\":false,\"isNew\":true,\"isPinned\":false,\"isTrending\":null,\"isBookmarked\":false,\"isLocal\":false,\"temperature\":0,\"temperatureLevel\":\"\",\"type\":\"Deal\",\"nsfw\":false,\"deletedAt\":null,\"publishedAt\":1720003748,\"voucherCode\":\"\",\"link\":\"https://www.justmylook.com/sebamed-m583\",\"merchant\":{\"merchantId\":45518,\"merchantName\":\"Justmylook\",\"merchantUrlName\":\"justmylook.co.uk\",\"isMerchantPageEnabled\":true},\"price\":2.39,\"nextBestPrice\":0,\"percentage\":0,\"discountType\":null,\"shipping\":{\"isFree\":1,\"price\":0},\"user\":{\"userId\":2701300,\"username\":\"Manish_N\",\"title\":\"\",\"avatar\":{\"path\":\"users/raw/default\",\"name\":\"2701300_6\",\"slotId\":\"default\",\"width\":0,\"height\":0,\"version\":6,\"unattached\":false,\"uid\":\"2701300_6.raw\",\"ext\":\"raw\"},\"persona\":{\"text\":null,\"type\":null},\"isBanned\":false,\"isDeletedOrPendingDeletion\":false,\"isUserProfileHidden\":false}}}}"
string = string.replace('false', '"False"').replace('true', '"True"').replace('null', '"None"').replace('\\', '')
result = json.loads(string)
print(result)
终端中的结果:
{'name': 'ThreadMainListItemNormalizer',
'props': {'thread': {'threadId': 4369992,
'threadTypeId': 1,
'titleSlug': 'sebamed-sale-extra-soft-baby-cream-ps239-anti-dandruff-shampoo-ps387',
'title': 'Sebamed sale - extra soft baby cream £2.39 / anti dandruff shampoo £3.87',
'currentUserVoteDirection': '',
'commentCount': 0,
'status': 'Activated',
'isExpired': 'False',
'isNew': 'True',
'isPinned': 'False',
'isTrending': 'None',
'isBookmarked': 'False',
'isLocal': 'False',
'temperature': 0,
'temperatureLevel': '',
'type': 'Deal',
'nsfw': 'False',
'deletedAt': 'None',
'publishedAt': 1720003748,
'voucherCode': '',
'link': 'https://www.justmylook.com/sebamed-m583',
'merchant': {'merchantId': 45518,
'merchantName': 'Justmylook',
'merchantUrlName': 'justmylook.co.uk',
'isMerchantPageEnabled': 'True'},
'price': 2.39,
'nextBestPrice': 0,
'percentage': 0,
'discountType': 'None',
'shipping': {'isFree': 1, 'price': 0},
'user': {'userId': 2701300,
'username': 'Manish_N',
'title': '',
'avatar': {'path': 'users/raw/default',
'name': '2701300_6',
'slotId': 'default',
'width': 0,
'height': 0,
'version': 6,
'unattached': 'False',
'uid': '2701300_6.raw',
'ext': 'raw'},
'persona': {'text': 'None', 'type': 'None'},
'isBanned': 'False',
'isDeletedOrPendingDeletion': 'False',
'isUserProfileHidden': 'False'}}}}