我正在使用这样的闭包构建 Xml 构建:
def buildRequestXml {
def RequestXml{ //add namespace and version attribute on root
FirstName("Name1")
LastName("Name2")
DOB("12/19/1983") //add attribute format="mm/dd/yyyy"
}
return new StreamingMarkupBuilder().bind(RequestXml)
}
我该怎么做?