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