Hi guys,
I have a model called Page:

class Page(models.Model):
    category = models.ForeignKey(Category)
    title = models.CharField(max_length=128)
    url = models.URLField()
    views = models.IntegerField(default=0)

I want to return all the Page record in my database at once to ajax
request. This record is up to 1000 rows. In my view, I try to convert this
to Json:
page = Page.objects.all()
data=json.dumps(page)
But I got error: your object is not serializable

So pls, my question is how can I return multiple records of database rows
to ajax request at once so that at JavaScript side, I should be able to
access each field of my record. ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMGzuy8WLxD1MJ2ERWBn4Uc4anX0US_X%2BzHveXMqb2g2Dy3fmw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to