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.

I have this code :

objects = Event.objects.all()
i = 0
dict = {}
small_dict = {}
for o in objects:
    small_dict = {'id': o.id, 'url': o.url, 'name': o.name, 'image': o.image}
    dict[str(i+1)] = small_dict
    small_dict = {}

return HttpResponse(
    simplejson.dumps(dict),
    content_type = 'application/javascript; charset=utf8'
)

and it gives me this :

{"1": {"url": "http://www.rte.ie/tv/crimecall/", "image": "http://img.rasset.ie/0002c8d0-250.jpg", "id": 2, "name": "Crimecall"}}

How I can further encapsulate it between () parentheses ? Because without them I'm getting error when parsing them in php.

share|improve this question
2  
"(" + simplejson.dumps(dict) + ")"? Or what exactly is your goal? – Sven Marnach Dec 2 '10 at 21:29
1  
What you get is valid JSON output. Maybe you shoould fix the PHP code. – Sven Marnach Dec 2 '10 at 21:29
I'm getting ' invalid label' error and from what I was able to find, adding parentheses fixes the problem – decarbo Dec 2 '10 at 21:36
You didn't even say what PHP code you're using. – AndiDog Dec 2 '10 at 22:05

2 Answers

up vote 0 down vote accepted

You can do it this way, but it's not viewable in browser now. I'f that's not a problem, here's the code :

callback = request.GET.get('callback', '')
objects = Event.objects.all()
i = 0
dict = {}
small_dict = {}
for o in objects:
    small_dict = {'id': o.id, 'url': o.url, 'name': o.name, 'image': o.image}
    dict[str(i+1)] = small_dict
    small_dict = {}

response = simplejson.dumps(dict)
response = callback + '(' + response + ')';

return HttpResponse(response,
    mimetype ='application/json; charset=utf8')
share|improve this answer
brilliant it works ! And I've already downloaded some dumb django-rest-api :) – decarbo Dec 2 '10 at 22:03
  1. The MIME type of JSON is "application/json".
  2. If you have problems parsing it in PHP, then it's a PHP problem. Don't add parens on the server side, but rather add them before parsing the string in PHP. I guess you know how to concatenate in PHP, right? Anyway, I don't understand what your problem is - don't you use json_decode?
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.