Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4015236
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:35:40+00:00 2026-05-20T09:35:40+00:00

I have models for eg like this class Model(): time=models.DateTimeField() free=models.BooleanField(default=False) user=models.ForeignKey(User) //it is

  • 0

I have models for eg like this

class Model():
time=models.DateTimeField()
free=models.BooleanField(default=False)
user=models.ForeignKey(User) //it is my own User class
full_info=models.TextField()

than I serialize it:

data=serializers.serialize("json",Model.objects.all())
        return HttpResponse(data,mimetype='application/json')

and here is my jquery code I use to fetch it:

$.post("/url",data,
                    function(data){


                        }, "json"
                    );

And my question is how to write all information from jason about model?For eg I want that in one paragraph tag will be one object with all information about it. How I can do this? Thanks for help
Best Regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T09:35:41+00:00Added an answer on May 20, 2026 at 9:35 am

    Check out the format that the serializer spits out (via your browser or shell):

    [{"pk": 1, "model":"modelname", "fields": {"fieldname": "fieldvalue", "fieldname2":"fieldvalue2"}}, ....]
    

    So it’s a list of arrays with pk, model, and fields which is an array.

    $.getJSON("/myurl", 
        function(data) {
            // data is [{},{},{}]
            $.each(data, function(key, val) { 
                // val is { pk, model, {fields}}
                $("#output").append("Object id is: " + val.pk + ' of model: ' + val.model);
                $.each(val.fields, function(fieldname, field) {
                     $("#output").append(fieldname + ' : ' + field);
                }); 
            });
        }, "json");
    
    <div id="output">
    
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Django Model that implements a time range, like this: class Period(models.Model):
I have a models A and B , that are like this: class A(models.Model):
I have a model which looks like this: class MyModel(models.Model) value = models.DecimalField() date
I have a Django application. One of my models looks like this: class MyModel(models.Model):
I have models like this class Blog(models.Model): name = models.CharField(max_length=100) tagline = models.TextField() def
I have a model like this class Ask(models.Model): name = models.CharField(max_length=500) designation = models.CharField(max_length=200,
Let's say I have a model like this class Foo(db.Model): id = db.StringProperty() bar
I have a rails model that looks something like this: class Recipe < ActiveRecord::Base
Specifically, I have a model that has a field like this pub_date = models.DateField(date
So I have a User model that :has_many other models like Documents, Videos, Posts

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.