The XML class represents an XML node with methods to manipulate and parse XML data.

XML 类表示一个 XML 节点,具有操作和解析 XML 数据的方法。

属性

name: string

The name of the XML node.

XML 节点的名称。

text: string

The text content of the XML node.

XML 节点的文本内容。

访问器

  • get attributes(): Record<string, string>

    返回 Record<string, string>

    The attributes of the XML node.

    XML 节点的属性。

方法

  • 参数

    • 可选selector: string

      Optional. A string to filter child elements by name.

    返回 XML[]

    An array of XML objects representing the child elements.

    Get child elements of the XML node.

    获取XML节点的子元素。

  • 参数

    • attrName: string

      The name of the attribute to retrieve.

    • 可选defValue: boolean

      The default value to return if the attribute is not found or not a number.

    返回 boolean

    The floating-point value of an XML node attribute, which is the default value if the attribute value does not exist.

    Retrieve the attribute value from the XML node's attributes based on the attribute name, convert it to a floating-point number, and return the default value if the attribute is not found.

    根据属性名称从 XML 节点的属性中检索属性值,将其转换为布尔值,如果未找到属性,则返回默认值。

  • 参数

    • attrName: string

      The name of the attribute to retrieve.

    • 可选defValue: number

      The default value to return if the attribute is not found.

    返回 number

    The floating-point value of an XML node attribute, which is the default value if the attribute value does not exist.

    Retrieve the attribute value from the XML node's attributes based on the attribute name, convert it to a floating-point number, and return the default value if the attribute is not found.

    根据属性名称从 XML 节点的属性中检索属性值,将其转换为浮点数,如果未找到属性,则返回默认值。

  • 参数

    • attrName: string

      The name of the attribute to retrieve.

    • 可选defValue: number

      The default value to return if the attribute is not found or not a number.

    返回 number

    The integer value of an XML node attribute, or the default value if the attribute value does not exist.

    Retrieve the attribute value from the XML node's attributes based on the attribute name, convert it to an integer, and return the default value if the attribute is not found.

    根据属性名称从 XML 节点的属性中检索属性值,将其转换为整数,如果未找到属性,则返回默认值。

  • 参数

    • attrName: string

      The name of the attribute to retrieve.

    • 可选defValue: string

      The default value to return if the attribute is not found.

    返回 string

    The attribute value as a string, or the default value if the attribute is not present.

    Retrieves the value of an attribute as a string. If the attribute is not found, the default value is returned.

    根据属性名称获取对应的字符串。如果未找到属性,则返回默认值。

  • 参数

    • selector: string

      The name of the child node to find.

    返回 XML

    The first child node with the specified name, or null if not found.

    Retrieves the first child node with the specified name.

    检索具有指定名称的第一个子节点。

  • 参数

    • aSource: string

      The XML source string to parse.

    返回 void

    Parses the given XML source string and populates the node and its children according to the XML structure.

    解析给定的 XML 源字符串,并根据 XML 结构填充节点及其子节点。

  • 返回 void

    Resets the attributes and child nodes of the XML node.

    重置 XML 节点的属性和子节点。

  • 参数

    • attrName: string

      The name of the attribute to set.

    • attrValue: string

      The value of the attribute to set.

    返回 void

    Sets an attribute on the XML node to the specified value.

    设置 XML 节点的属性为指定的值。