Tuesday, 14 March 2017

How to add a value to a JSON array of objects?

i have a json array of objects like this, to pass the values to the datatables.

[{ _id: '58a2b5941a9dfe3537aad540',
    Country: 'India',
    State: 'Andhra Pradesh',
    District: 'Guntur',
    Division: '',
    Village: 'Macharla',
    FarmerName: 'Vijay',
    Address: '',
    Pin: '',
    PrimaryContact: '9160062222',
    OtherContacts: '',
    Email: '',
    updatedAt: '2017-02-14T04:39:01.000Z',
    modifiedBy: '',
    createdAt: '2017-02-14T04:39:01.000Z' },
  { _id: '58a2b5941a9dfe3537aad541',
    Country: 'India',
    State: 'Telangana',
    District: 'Karimnagar',
    Division: '',
    Village: 'Sirisilla',
    FarmerName: 'Subhash Rao',
    Address: '',
    Pin: '',
    PrimaryContact: '8121787878/9441967878',
    OtherContacts: '',
    Email: '',
    updatedAt: '2017-02-14T04:39:01.000Z',
    modifiedBy: '',
    createdAt: '2017-02-14T04:39:01.000Z' },
  { _id: '58a2b5941a9dfe3537aad542',
    Country: 'India',
    State: 'Telangana',
    District: 'Medak',
    Division: '',
    Village: 'Jagur',
    FarmerName: 'Ramachandra',
    Address: '',
    Pin: '',
    PrimaryContact: '9346481116',
    OtherContacts: '',
    Email: '',
    updatedAt: '2017-02-14T04:39:01.000Z',
    modifiedBy: '',
    createdAt: '2017-02-14T04:39:01.000Z' },
  { _id: '58a2b5941a9dfe3537aad543',
    Country: 'India',
    State: 'Telangana',
    District: 'Mahaboob Nagar',
    Division: '',
    Village: 'annugal',
    FarmerName: 'Rajesh Reddy',
    Address: '',
    Pin: '',
    PrimaryContact: '93464593808',
    OtherContacts: '',
    Email: '',
    updatedAt: '2017-02-14T04:39:01.000Z',
    modifiedBy: '',
    createdAt: '2017-02-14T04:39:01.000Z' } ]

Now i want to add one more object like "recordsTotal":600 outside of this array. how can i achieve it? Finally i want the data like this

{
    "draw": 1,
    "recordsTotal": 1,
    "recordsFiltered": 1,
    "data": [{
    "VendorID": "V0000051",
    "Name": "STAPLES CONTRACT AND COMMERCIAL INC",
    "Mnemonic": "CORPORATE",
    "TermsDescription": "INV 2/30 NET 31",
    "ActiveYn": "Y"
    }]
}



via Manoj

No comments:

Post a Comment