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