본문 바로가기

json4.2

Python NumPy 배열은 JSON으로 직렬화할 수 없습니다., NumPy array is not JSON serializable 질문 NumPy 배열을 생성한 후 Django 컨텍스트 변수로 저장한 후, 웹페이지를 로드할 때 다음과 같은 오류가 발생합니다: array([ 0, 239, 479, 717, 952, 1192, 1432, 1667], dtype=int64)은(는) JSON 직렬화할 수 없습니다. 이게 무슨 뜻인가요? 답변 나는 정기적으로 np.arrays를 "jsonify"합니다. 먼저 배열에 ".tolist()" 메소드를 사용해보세요. 다음과 같이: import numpy as np import codecs, json a = np.arange(10).reshape(2,5) # 2 by 5 배열 b = a.tolist() # 동일한 데이터와 인덱스를 가진 중첩 리스트 file_path = "/path.json" ## 경.. 2023. 12. 5.
Flutter 나쁜 상태: "application/json" 콘텐트 유형을 가진 Request의 본문 필드를 설정할 수 없습니다., Bad state: Cannot set the body fields of a Request with content-type "application/json" 질문 Map headers = {'Content-Type':'application/json','authorization':'Basic c3R1ZHlkb3RlOnN0dWR5ZG90ZTEyMw=='}; var response = await post(Urls.getToken, headers: headers, body: {"grant_type":"password","username":"******","password":"*****","scope":"offline_access"}, ); 이를 실행할 때 데이터를 받을 수 없으며 발생하는 오류는 다음과 같습니다. Bad state: "application/json" 타입의 content-type을 가진 요청의 body 필드를 설정할 수 없습니다. 답변 본문을 jso.. 2023. 7. 12.