XML 属性の表現。
// Reads the first and last name of each person and adds a new attribute with // the full name. let xml = '<roster>' + '<person first="John" last="Doe"/>' + '<person first="Mary" last="Smith"/>' + '</roster>'; const document = XmlService.parse(xml); const people = document.getRootElement().getChildren('person'); for (let i = 0; i < people.length; i++) { const person = people[i]; const firstName = person.getAttribute('first').getValue(); const lastName = person.getAttribute('last').getValue(); person.setAttribute('full', `${firstName} ${lastName}`); } xml = XmlService.getPrettyFormat().format(document); Logger.log(xml);
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
get | String | 属性のローカル名を取得します。 |
get | Namespace | 属性の名前空間を取得します。 |
get | String | 属性の値を取得します。 |
set | Attribute | 属性のローカル名を設定します。 |
set | Attribute | 属性の名前空間を設定します。 |
set | Attribute | 属性の値を設定します。 |
詳細なドキュメント
get Name()
get Namespace()
get Value()
属性の値を取得します。
戻る
String
- 属性の値
set Name(name)
属性のローカル名を設定します。属性の名前空間接頭辞を設定するには、set
と Xml
を組み合わせて使用します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
name | String | 設定するローカル名 |
戻る
Attribute
- チェーン用の属性