Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.
XMLaiutanti in util.xml
util.xml
contiene metodi per facilitare la conversione delle XML stringhe.
-
util.xml.toMap(String) : Object
-
Converte una XML stringa in un dizionario.
Esempio 1:
Input: <?xml version="1.0" encoding="UTF-8"?> <posts> <post> <id>1</id> <title>Getting started with GraphQL</title> </post> </posts> Output (object): { "posts":{ "post":{ "id":1, "title":"Getting started with GraphQL" } } }
Esempio 2:
Input: <?xml version="1.0" encoding="UTF-8"?> <posts> <post> <id>1</id> <title>Getting started with GraphQL</title> </post> <post> <id>2</id> <title>Getting started with AppSync</title> </post> </posts> Output (JavaScript object): { "posts":{ "post":[ { "id":1, "title":"Getting started with GraphQL" }, { "id":2, "title":"Getting started with AppSync" } ] } }
util.xml.toJsonString(String, Boolean?) : String
-
Converte una XML stringa in una stringa. JSON È simile a
toMap
, tranne per il fatto che l'output è una stringa. Ciò è utile se si desidera convertire e restituire direttamente la XML risposta da un HTTP oggetto aJSON. È possibile impostare un parametro booleano opzionale per determinare se si desidera codificare tramite stringa il. JSON