Domande taggate «json»

JSON (JavaScript Object Notation) è un formato di scambio di dati testuali e indipendente dalla lingua. Usa questo tag quando è coinvolto questo formato di testo. NON USARE QUESTO TAG PER OGGETTI JAVASCRIPT NATIVI O LETTERI DI OGGETTI JAVASCRIPT. Prima di porre una domanda, convalida il tuo JSON utilizzando un validatore JSON come JSONLint (https://jsonlint.com).

16
Come caricare un file e i dati JSON in Postman?
Sto usando Spring MVC e questo è il mio metodo: /** * Upload single file using Spring Controller. */ @RequestMapping(value = "/uploadFile", method = RequestMethod.POST) public @ResponseBody ResponseEntity<GenericResponseVO<? extends IServiceVO>> uploadFileHandler( @RequestParam("name") String name, @RequestParam("file") MultipartFile file, HttpServletRequest request, HttpServletResponse response) { if (!file.isEmpty()) { try { byte[] bytes = …
134 java  json  spring-mvc  postman 



6
Come pubblicare i dati JSON con PHP cURL?
Ecco il mio codice, $url = 'url_to_post'; $data = array( "first_name" => "First name", "last_name" => "last name", "email"=>"email@gmail.com", "addresses" => array ( "address1" => "some address", "city" => "city", "country" => "CA", "first_name" => "Mother", "last_name" => "Lastnameson", "phone" => "555-1212", "province" => "ON", "zip" => "123 ABC" ) …
132 php  json  rest  curl 

9
Il modulo json di Python, converte le chiavi del dizionario int in stringhe
Ho scoperto che quando viene eseguito quanto segue, il modulo json di python (incluso dalla 2.6) converte le chiavi del dizionario int in stringhe. >>> import json >>> releases = {1: "foo-v0.1"} >>> json.dumps(releases) '{"1": "foo-v0.1"}' Esiste un modo semplice per conservare la chiave come int, senza la necessità di …
132 python  json 






6
Controlla se esiste la chiave e itera l'array JSON usando Python
Ho un sacco di dati JSON da post di Facebook come quello qui sotto: {"from": {"id": "8", "name": "Mary Pinter"}, "message": "How ARE you?", "comments": {"count": 0}, "updated_time": "2012-05-01", "created_time": "2012-05-01", "to": {"data": [{"id": "1543", "name": "Honey Pinter"}]}, "type": "status", "id": "id_7"} I dati JSON sono semi-strutturati e non sono …
130 python  json  loops 

4
Come creare JSONArray corretto in Java usando JSONObject
come posso creare un oggetto JSON come il seguente, in Java usando JSONObject? { "employees": [ {"firstName": "John", "lastName": "Doe"}, {"firstName": "Anna", "lastName": "Smith"}, {"firstName": "Peter", "lastName": "Jones"} ], "manager": [ {"firstName": "John", "lastName": "Doe"}, {"firstName": "Anna", "lastName": "Smith"}, {"firstName": "Peter", "lastName": "Jones"} ] } Ho trovato molti esempi, ma …
129 java  json  arrays 


6
Come sfuggire a una stringa JSON per averla in un URL?
Utilizzando Javascript, desidero generare un collegamento a una pagina. I parametri della pagina sono in un array Javascript che serializzo in JSON. Quindi vorrei generare un URL del genere: http://example.com/?data="MY_JSON_ARRAY_HERE" Come devo evitare la mia stringa JSON (array serializzato) per includerla come parametro in un URL? Se c'è una soluzione …

4
Come inviare un oggetto JSON utilizzando i dati del modulo html
Quindi ho questo modulo HTML: <html> <head><title>test</title></head> <body> <form action="myurl" method="POST" name="myForm"> <p><label for="first_name">First Name:</label> <input type="text" name="first_name" id="fname"></p> <p><label for="last_name">Last Name:</label> <input type="text" name="last_name" id="lname"></p> <input value="Submit" type="submit" onclick="submitform()"> </form> </body> </html> Quale sarebbe il modo più semplice per inviare i dati di questo modulo come oggetto JSON al …
129 javascript  jquery  html  json  forms 

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.