การนำเสนอแอตทริบิวต์ 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()
getPrefix()
เพื่อรับคำนำหน้า
รีเทิร์น
String
— ชื่อท้องถิ่นของแอตทริบิวต์
getNamespace()
getValue()
รับค่าของแอตทริบิวต์
รีเทิร์น
String
— ค่าของแอตทริบิวต์
setName(name)
ตั้งชื่อภายในของแอตทริบิวต์ หากต้องการตั้งค่าคำนำหน้าเนมสเปซสำหรับแอตทริบิวต์ ให้ใช้ setNamespace(namespace)
ร่วมกับ XmlService.getNamespace(prefix, uri)
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
name | String | ชื่อท้องถิ่นที่จะตั้ง |
รีเทิร์น
Attribute
— แอตทริบิวต์สำหรับการทำสายโซ่
setNamespace(namespace)
setValue(value)
ตั้งค่าของแอตทริบิวต์
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
value | String | ค่าที่ต้องกำหนด |
รีเทิร์น
Attribute
— แอตทริบิวต์สำหรับการทำสายโซ่