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
- 用于链接的属性