sql >> Database teknologi >  >> NoSQL >> MongoDB

Parse.com tilføjer JSON Object til JSON Array

Prøv at bruge object.toString() i stedet for object .

lan.add("Participants", object.toString());

JSON:

{"Participants":["{\"PlayerName\":\"John\",\"ID\":514145}"]}

For at parse denne JSON, prøv dette:

JSONObject jsonObj = new JSONObject(YOUR_JSON_STRING);

// Participants
JSONArray participantsJsonArray = jsonObj.getJSONArray("Participants");

// Participant
JSONObject participanJsonObject = participantsJsonArray.getJSONObject(0);

// PlayerName
String playerName = participanJsonObject.getString("PlayerName");
// ID
String id = participanJsonObject.getInt("ID");

Håber dette vil hjælpe ~



  1. hvordan man har relationer mange til mange i redis

  2. Decimal / Float i mongoose for node.js

  3. mongodb tæller antal forskellige værdier pr. felt/nøgle

  4. Mongoose upsert duplikatnøglefejl