4
我正在學習如何在python中使用elasticsearch(link = https://tryolabs.com/blog/2015/02/17/python-elasticsearch-first-steps/#contacto)我遇到了這個錯誤。給出錯誤「JSON對象必須是str,而不是'字節'」
import json
r = requests.get('http://localhost:9200')
i = 1
while r.status_code == 200:
r = requests.get('http://swapi.co/api/people/'+ str(i))
es.index(index='sw', doc_type='people', id=i, body=json.loads(r.content))
i=i+1
print(i)
類型錯誤:JSON對象必須str的,而不是 '字節'