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).

1
REST - HTTP Post Multipart con JSON
Ho bisogno di ricevere un HTTP Post Multipart che contiene solo 2 parametri: Una stringa JSON Un file binario Qual è il modo corretto per impostare il corpo? Proverò la chiamata HTTP utilizzando la console REST di Chrome, quindi mi chiedo se la soluzione corretta sia impostare una chiave "etichetta" …
88 java  json  rest  http  resteasy 

8
Come utilizzare Select2 con JSON tramite richiesta Ajax?
My Select2 3.4.5 non funziona con i dati JSON. Ecco la mia casella di input su HTML: <input class='form-control col-lg-5 itemSearch' type='text' placeholder='select item' /> ... e il mio JavaScript $(".itemSearch").select2({ placeholder: "Search for an Item", minimumInputLength: 2, ajax: { url: "/api/productSearch", dataType: 'json', quietMillis: 100, data: function (term, page) …

1
XmlDocument - caricare dalla stringa?
protected void Page_Load(object sender, EventArgs e) { XmlDocument doc = new XmlDocument(); try { string path = Server.MapPath("."); doc.Load(path+"whatever.xml"); } catch (Exception ex) { lblError.Text = ex.ToString(); return; } // Convert XML to a JSON string string JSON = XmlToJSON(doc); // Replace \ with \\ because string is being decoded …
88 c#  asp.net  xml  json 

3
Qual è la differenza tra DataContractJsonSerializer e JavaScriptSerializer?
.NET Framework viene fornito con System.Runtime.Serialization.Json.DataContractJsonSerializer e System.Web.Script.Serialization.JavaScriptSerializer , che de / serializzano entrambi JSON. Come faccio a sapere quando scegliere uno di questi tipi rispetto agli altri? MSDN non chiarisce quali siano i loro vantaggi relativi. Abbiamo diversi progetti che consumano o emettono JSON e la classe selezionata per …



8
Restituzione di un oggetto JSON come risposta in Spring Boot
Ho un esempio di RestController in Spring Boot: @RestController @RequestMapping("/api") class MyRestController { @GetMapping(path = "/hello") public JSONObject sayHello() { return new JSONObject("{'aa':'bb'}"); } } Sto usando la libreria JSON org.json Quando premo API /hello, ottengo un'eccezione che dice: Servlet.service () per servlet [dispatcherServlet] nel contesto con percorso [] ha …


6
Implementazione dei moduli ES6, come caricare un file json
Sto implementando un esempio da https://github.com/moroshko/react-autosuggest Il codice importante è così: import React, { Component } from 'react'; import suburbs from 'json!../suburbs.json'; function getSuggestions(input, callback) { const suggestions = suburbs .filter(suburbObj => suburbMatchRegex.test(suburbObj.suburb)) .sort((suburbObj1, suburbObj2) => suburbObj1.suburb.toLowerCase().indexOf(lowercasedInput) - suburbObj2.suburb.toLowerCase().indexOf(lowercasedInput) ) .slice(0, 7) .map(suburbObj => suburbObj.suburb); // 'suggestions' will be an …

17
Converti datatable in JSON in C #
Voglio ottenere i record dal database in un file DataTable. Quindi converti il DataTablein un oggetto JSON. Restituisci l'oggetto JSON alla mia funzione JavaScript. Uso questo codice chiamando: string result = JsonConvert.SerializeObject(DatatableToDictionary(queryResult, "Title"), Newtonsoft.Json.Formatting.Indented); Per convertire un DataTable in JSON, funziona correttamente e restituisce quanto segue: { "1": { "viewCount": …
87 c#  json  datatable 


3
Differenza tra json.js e json2.js
Qualcuno può dirmi qual è la differenza tra i 2 parser JSON? https://github.com/douglascrockford/JSON-js/blob/master/json.js https://github.com/douglascrockford/JSON-js/blob/master/json2.js Ho un file JSON del 2007-04-13 (ha metodi come parseJSON). Non vedo questi metodi in nessuna delle nuove versioni.
87 json 

2
Usa jq per analizzare una stringa JSON
Sto cercando di jqanalizzare una struttura JSON come: { "a" : 1, "b" : 2, "c" : "{\"id\":\"9ee ...\",\"parent\":\"abc...\"}\n" } Ovvero, un elemento in JSON è una stringa con json con escape. Quindi, ho qualcosa sulla falsariga di $ jq [.c] myFile.json | jq [.id] Ma questo va in crash …
87 json  string  sed  escaping  jq 

4
Dati POST in formato JSON
Ho alcuni dati che devo convertire in formato JSON e poi POST con una funzione JavaScript. <body onload="javascript:document.myform.submit()"> <form action="https://www.test.net/Services/RegistrationService.svc/InviteNewContact" method="post" name="myform"> <input name="firstName" value="harry" /> <input name="lastName" value="tester" /> <input name="toEmail" value="testtest@test.com" /> </form> </body> Questo è l'aspetto attuale del post. Ho bisogno che invii i valori in formato …

11
Serializzare un Python namedtuple in json
Qual è il modo consigliato per serializzare un namedtuplein json mantenendo i nomi dei campi? La serializzazione di a namedtuplein json comporta la serializzazione solo dei valori e la perdita dei nomi dei campi nella traduzione. Vorrei che i campi venissero mantenuti anche quando json-ized e quindi ha fatto quanto …

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.