OPEN_GRID API - v1.5.2
    Preparing search index...

    Interface XmlStringifyOptions

    데이터 → XML 직렬화 옵션.

    Options for serializing data into XML.

    データ → XML のシリアライズオプション。

    数据 → XML 的序列化选项。

    interface XmlStringifyOptions {
        declaration?: boolean;
        excludeFields?: string[];
        fieldMap?: Record<string, string>;
        indent?: number;
        mode?: "element" | "attribute";
        nullAs?: string;
        rootTag?: string;
        rowTag?: string;
    }
    Index

    Properties

    declaration?: boolean

    XML 선언부 포함 여부. 기본 true.

    Whether to include the XML declaration. Default true.

    XML 宣言部を含めるかどうか。既定は true。

    是否包含 XML 声明部分。默认为 true。

    true
    
    excludeFields?: string[]

    출력에서 제외할 필드 목록.

    Field names to exclude from the output.

    出力から除外するフィールドの一覧。

    从输出中排除的字段列表。

    fieldMap?: Record<string, string>

    그리드 field명 → XML 태그명 매핑.

    Grid field name → XML tag name map.

    グリッド field 名 → XML タグ名のマッピング。

    表格 field 名 → XML 标签名的映射。

    indent?: number

    들여쓰기 공백 수. 기본 2.

    Indentation space count. Default 2.

    インデントの空白数。既定は 2。

    缩进的空格数。默认为 2。

    2
    
    mode?: "element" | "attribute"

    출력 방식: 'element'(기본) | 'attribute'.

    Output mode: 'element' (default) | 'attribute'.

    出力方式: 'element'(既定) | 'attribute'。

    输出方式: 'element'(默认) | 'attribute'。

    'element'
    
    nullAs?: string

    null/undefined 처리 문자열. 기본 ''.

    String used for null/undefined values. Default ''.

    null/undefined を処理する文字列。既定は ''。

    处理 null/undefined 的字符串。默认为 ''。

    ''
    
    rootTag?: string

    루트 태그명. 기본 'rows'.

    Root tag name. Default 'rows'.

    ルートタグ名。既定は 'rows'。

    根标签名。默认为 'rows'。

    'rows'
    
    rowTag?: string

    행 태그명. 기본 'row'.

    Row tag name. Default 'row'.

    行タグ名。既定は 'row'。

    行标签名。默认为 'row'。

    'row'