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
:用於鏈結的屬性