本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
XMLutil.xml 中的助手
util.xml
包含帮助进行XML字符串转换的方法。
-
util.xml.toMap(String) : Object
-
将XML字符串转换为字典。
示例 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" } } }
示例 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
-
将XML字符串转换为字符JSON串。这与
toMap
类似,只不过输出是字符串。如果你想直接转换HTTP对象的XML响应并将其返回到,这很有用JSON。您可以设置一个可选的布尔参数来确定是否要对它进行字符串编码。JSON