Utility class for XML operations.

XML操作的工具类。

构造函数

方法

  • 参数

    • aSource: string

      The string to decode.

    返回 string

    The decoded string.

    Decodes a string that contains HTML entities into a displayable form.

    对包含HTML实体的字符串进行解码,转换为可显示的格式。

  • 参数

    • str: string

      The string that contains special characters to be encoded.

    返回 string

    The encoded string with HTML entities.

    Encodes special characters in a string to their corresponding HTML entities.

    将字符串中的特殊字符转换为对应的HTML实体。

  • 参数

    • attrs: any

      The object containing the attribute.

    • attrName: string

      The name of the attribute.

    • 可选defValue: boolean

      The default value if the attribute is not found.

    返回 boolean

    If the attribute is a valid Boolean values, return the parsed Boolean values; otherwise, return the default value.

    Retrieve the attribute values in the object based on the attribute name and convert them to Boolean values. If the attribute does not exist, use the default value.

    根据属性名检索对象中的属性值,并将其转换为布尔值,如果属性不存在,则使用默认值。

  • 参数

    • attrs: any

      The object containing the attribute.

    • attrName: string

      The name of the attribute.

    • 可选defValue: number

      The default value if the attribute is not found.

    返回 number

    If the attribute is a valid floating-point number, return the parsed floating-point number; otherwise, return the default value.

    Retrieve the attribute value from the object based on the attribute name and convert it to a floating-point number. If the attribute does not exist, use the default value.

    根据属性名检索对象中的属性值,并将其转换为浮点数,如果属性不存在,则使用默认值。

  • 参数

    • attrs: any

      The object containing the attribute.

    • attrName: string

      The name of the attribute.

    • 可选defValue: number

      The default value if the attribute is not found.

    返回 number

    If the attribute is a valid integer, return the parsed integer value; otherwise, return the default value.

    Retrieve the attribute values in the object based on the attribute name and convert them to integers. If the attribute does not exist, use the default value.

    根据属性名检索对象中的属性值,并将其转换为整数,如果属性不存在,则使用默认值。

  • 参数

    • attrs: any

      The object that contains the attribute.

    • attrName: string

      The name of the attribute to retrieve.

    • 可选defValue: string

      The default value if the attribute is not found or is null.

    返回 string

    The retrieved attribute value, or the default if the attribute is not present.

    Retrieves an attribute value from an object, and converts it to a string. If the attribute or object does not exist, the default value is used.

    从一个对象中检索一个属性值,并将此属性转化为字符串,如果属性不存在或对象不存在,则使用默认值。