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

    Interface XmlParseOptions

    XML → 데이터 파싱 옵션.

    Options for parsing XML into data.

    XML → データのパースオプション。

    XML → 数据的解析选项。

    interface XmlParseOptions {
        fieldMap?: Record<string, string>;
        mode?: "auto" | "element" | "attribute";
        rootTag?: string;
        rowTag?: string;
        trim?: boolean;
    }
    Index

    Properties

    fieldMap?: Record<string, string>

    XML 태그명 → 그리드 field명 매핑. 생략 시 태그명 그대로 사용.

    XML tag name → grid field name map; tag names are used as-is when omitted.

    XML タグ名 → グリッド field 名のマッピング。省略時はタグ名をそのまま使用。

    XML 标签名 → 表格 field 名的映射;省略时直接使用标签名。

    mode?: "auto" | "element" | "attribute"

    값 추출 방식: 'element' | 'attribute' | 'auto'(기본).

    Value extraction mode: 'element' | 'attribute' | 'auto' (default).

    値の抽出方式: 'element' | 'attribute' | 'auto'(既定)。

    值的提取方式: 'element' | 'attribute' | 'auto'(默认)。

    'auto'
    
    rootTag?: string

    루트 엘리먼트 태그명. 생략 시 문서 루트 자동 사용.

    Root element tag name; falls back to the document root when omitted.

    ルート要素のタグ名。省略時は文書ルートを自動で使用。

    根元素的标签名;省略时回退到文档根元素。

    rowTag?: string

    행 엘리먼트 태그명. 생략 시 루트의 첫 번째 자식 자동 감지.

    Row element tag name; auto-detected from the root's first child when omitted.

    行要素のタグ名。省略時はルートの最初の子要素から自動検出。

    行元素的标签名;省略时从根元素的第一个子元素自动检测。

    trim?: boolean

    텍스트 값 앞뒤 공백 제거. 기본 true.

    Trim whitespace around text values. Default true.

    テキスト値の前後の空白を除去。既定は true。

    去除文本值前后的空白。默认为 true。

    true