[Fixed]-Django1.8 and Python2.7: Uncaught TypeError: Cannot read property '0' of undefined(…)

1👍

Typo in your Python script:

temp = json.dumps({"alzDyshpagia":[dict]})

Should be

temp = json.dumps({"alzDysphagia":[dict]}) (the ‘p’ and ‘h’ are reversed).

👤Alex K

Leave a comment