XML CDATASection
節點的表示法。
// Create and log an XML document that shows how special characters like '<', // '>', and '&' are stored in a CDATASection node as compared to in a Text node. const illegalCharacters = '<em>The Amazing Adventures of Kavalier & Clay</em>'; const cdata = XmlService.createCdata(illegalCharacters); const text = XmlService.createText(illegalCharacters); const root = XmlService.createElement('root').addContent(cdata).addContent(text); const document = XmlService.createDocument(root); const xml = XmlService.getPrettyFormat().format(document); Logger.log(xml);
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
append(text) | Text | 將指定文字附加至節點中現有的任何內容。 |
detach() | Content | 將節點從父項 Element 節點中分離。 |
get | Element | 取得節點的父項 Element 節點。 |
get | String | 取得 Text 節點的文字值。 |
get | String | 取得節點的所有直接或間接子項節點的文字值,並依文件中顯示的順序排列。 |
set | Text | 設定 Text 節點的文字值。 |
內容詳盡的說明文件
append(text)
get Text()
取得 Text
節點的文字值。
回攻員
String
:Text
節點的文字值
get Value()
取得節點的所有直接或間接子項節點的文字值,並依文件中顯示的順序排列。
回攻員
String
:節點的直接或間接子項的所有節點文字值