0
我想這傳遞到從前端的職位,但我不斷收到這條線上這個錯誤,我想不通這是爲什麼字符串的索引必須是整數,而不是str的 - Django的
{"isUpdated": true}
通過這
,我有這些
body_unicode = request.body.decode('utf-8')
data = json.loads(body_unicode)
if data['isUpdated'] is not False:
# more codes
我一直對這個if data['isUpdated'] is not False:
能有人給我SUG得到錯誤gestions發生了什麼?
也許它會將「true」編碼爲str。檢查數據的值和數據的類型['isUpdated']' – Algorithmatic
解析這些數據之前'body_unicode'的值是多少? –
@算法值爲True,類型爲bol – Tsuna