文档管理中心

XML转换

将XML文本转换为JavaScript对象,便于处理和操作数据,适用于JavaScript应用程序。

语言基础类库提供ConvertXML类,将XML文本转换为JavaScript对象,输入为待转换的XML字符串及转换选项,输出为转换后的JavaScript对象。具体转换选项可见API参考@ohos.convertxml

注意事项

XML解析及转换需要确保传入的XML数据符合XML标准格式。

开发步骤

以XML转换为JavaScript对象为例,说明如何获取标签值。

  1. 引入所需的模块。

    收起
    自动换行
    深色代码主题
    复制
    1. import { convertxml } from '@kit.ArkTS';
  2. 输入待转换的XML,设置转换选项。支持的转换选项及含义,请参见ConvertOptions

    说明

    请确保传入的XML文本符合标准格式,若包含“&”字符,请使用实体引用“&”替换。

    收起
    自动换行
    深色代码主题
    复制
    1. let xml: string =
    2. '<?xml version="1.0" encoding="utf-8"?>' +
    3. '<note importance="high" logged="true">' +
    4. ' <title>Happy</title>' +
    5. ' <todo>Work</todo>' +
    6. ' <todo>Play</todo>' +
    7. '</note>';
    8. let options: convertxml.ConvertOptions = {
    9. // trim: false 转换后是否删除文本前后的空格,否
    10. // declarationKey: "_declaration" 转换后文件声明使用_declaration来标识
    11. // instructionKey: "_instruction" 转换后指令使用_instruction标识
    12. // attributesKey: "_attributes" 转换后属性使用_attributes标识
    13. // textKey: "_text" 转换后标签值使用_text标识
    14. // cdataKey: "_cdata" 转换后未解析数据使用_cdata标识
    15. // docTypeKey: "_doctype" 转换后文档类型使用_doctype标识
    16. // commentKey: "_comment" 转换后注释使用_comment标识
    17. // parentKey: "_parent" 转换后父类使用_parent标识
    18. // typeKey: "_type" 转换后元素类型使用_type标识
    19. // nameKey: "_name" 转换后标签名称使用_name标识
    20. // elementsKey: "_elements" 转换后元素使用_elements标识
    21. trim: false,
    22. declarationKey: '_declaration',
    23. instructionKey: '_instruction',
    24. attributesKey: '_attributes',
    25. textKey: '_text',
    26. cdataKey: '_cdata',
    27. doctypeKey: '_doctype',
    28. commentKey: '_comment',
    29. parentKey: '_parent',
    30. typeKey: '_type',
    31. nameKey: '_name',
    32. elementsKey: '_elements'
    33. }
  3. 调用fastConvertToJSObject函数并打印结果。

    收起
    自动换行
    深色代码主题
    复制
    1. let conv: convertxml.ConvertXML = new convertxml.ConvertXML();
    2. let result: object = conv.fastConvertToJSObject(xml, options);
    3. let strRes: string = JSON.stringify(result); // 将js对象转换为json字符串,用于显式输出
    4. console.info(strRes);

    输出结果如下所示:

    收起
    自动换行
    深色代码主题
    复制
    1. strRes:
    2. {"_declaration":{"_attributes":{"version":"1.0","encoding":"utf-8"}},"_elements":[{"_type":"element","_name":"note",
    3. "_attributes":{"importance":"high","logged":"true"},"_elements":[{"_type":"element","_name":"title","_parent":"note",
    4. "_elements":[{"_type":"text","_text":"Happy"}]},{"_type":"element","_name":"todo","_parent":"note","_elements":
    5. [{"_type":"text","_text":"Work"}]},{"_type":"element","_name":"todo","_parent":"note","_elements":[{"_type":"text",
    6. "_text":"Play"}]}]}]}
搜索
请输入您想要搜索的关键词