복잡한 JSON의 중첩 데이터 액세스
다음 JSON 데이터에서 "content" 필드에 어떻게 액세스합니까?
{ "status": "200", "msg": "", "data": { "time": "1515580011", "video_info": [ { "announcement": "{\"announcement_id\":\"6\",\"name\":\"INS\u8d26\u53f7\",\"icon\":\"http:\\/\\/liveme.cms.ksmobile.net\\/live\\/announcement\\/2017-08-18_19:44:54\\/ins.png\",\"icon_new\":\"http:\\/\\/liveme.cms.ksmobile.net\\/live\\/announcement\\/2017-10-20_22:24:38\\/4.png\",\"videoid\":\"15154610218328614178\",\"content\":\"FOLLOW ME PLEASE\",\"x_coordinate\":\"0.22\",\"y_coordinate\":\"0.23\"}", "announcement_shop": "" } ] } }
해결책
에 원하는 "콘텐츠" 값을 추출하려면 먼저 JSON 데이터를 Python dict에 로드해야 합니다. 그런 다음 다음과 같이 중첩된 데이터 구조를 탐색합니다.
Python 코드:
import json raw_data = { # JSON data pasted here } data = raw_data['data']['video_info'][0] # Convert the announcement string to a dict announcement_data = json.loads(data['announcement']) # Retrieve the desired content content = announcement_data['content'] print(content) # Output: 'FOLLOW ME PLEASE'
이 접근 방식을 따르면 복잡한 JSON 구조를 탐색하고 원하는 데이터를 효율적으로 추출할 수 있습니다.
위 내용은 중첩된 JSON 데이터에 액세스하는 방법: \'content\' 필드 추출?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!