Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi i am trying to parse JSON array in django sent from android the json response sent from android looks like

 [{"record":[{"intensity":"Low","body_subpart":"Scalp","symptom":"Agitation"}]}]

Now my function in django is as below :

record = simplejson.loads(request.POST['record'])
for o in record:            
    new_symptoms=UserSymptoms(health_record=new_healthrecord,body_subpart=o.body_subpart,symptoms=o.symptom,intensity=o.intensity)
    new_symptoms.save()

but its not working gving me error For that i also tried to execute above lines in python shell

>>>rec=json.loads('[{"intensity":"Low","body_subpart":"Scalp","symptom":"Agitation"},{"intensity":"High","body_subpart":"Scalp","symptom":"Bleeding"}]')
>>> for o in rec:
...     print rec.body_subpart
... 
Traceback (most recent call last):
  File "<console>", line 2, in <module>
AttributeError: 'list' object has no attribute 'body_subpart'
share|improve this question
Why rec.body_subpart instead of o.body_subpart? – San4ez Apr 8 '12 at 8:26
sorry typing mistake its o.body_subpart – user1163236 Apr 8 '12 at 8:47

2 Answers

You must use o['body_subpart'] instead of o.body_subpart. While this is the same in Javascript, it different in Python.

share|improve this answer
Hey thanks that really worked... – user1163236 Apr 8 '12 at 8:48
>>>rec=json.loads('[{"intensity":"Low","body_subpart":"Scalp","symptom":"Agitation"},{"intensity":"High","body_subpart":"Scalp","symptom":"Bleeding"}]')
>>> for o in rec:
...     print rec['body_subpart']

By default JSON object is transformed to Python dict, so it's surprising why you manage access its values this way:

record = simplejson.loads(request.POST['record'])
for o in record:            
    body_subpart=o.body_subpart
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.