与 XML 一起使用 Siesta

Using Siesta with XML

我无法弄清楚如何使用 Siesta 阅读 XML 内容。我试过这样的东西(在我的服务子类中):

configureTransformer("*") { (content: NSData, entity) -> NSXMLDocument? in
  return try? NSXMLDocument(data: content, options: 0)
}

..但它似乎没有被调用。我走在正确的轨道上吗?

更新:这是单个资源的 Siesta 日志:

[Siesta:Configuration] Computing configuration for GET Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[]
[Siesta:Configuration] Applying config 0 [Siesta default response parsers] to Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[]
[Siesta:Configuration] Applying config 1 [custom] to Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[]
[Siesta:Staleness] Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[] is not up to date: no error | no data
[Siesta:Network] GET https://[host]/httpAuth/app/rest/builds/running:any,branch:develop
[Siesta:Observers] Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[L] sending Requested to 1 observer
[Siesta:Observers] Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[L] sending Requested to <XTSideBarDataSource: 0x600000091440>
[Siesta:Network] 200 ← GET https://[host]/httpAuth/app/rest/builds/running:any,branch:develop
[Siesta:StateChanges] Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[] received new data from Network : Entity(content: <OS_dispatch_data: data[0x61000026a4c0] = { leaf, size = 3201, buf = 0x1021f2200 }>, charset: nil, headers: ["cache-control": "no-cache, no-store", "strict-transport-security": "max-age=31536000; includeSubDomains", "content-length": "3201", "content-type": "application/xml", "set-co…
[Siesta:Observers] Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[D] sending NewData(Network) to 1 observer
[Siesta:Observers] Siesta.Resource(https://[host]/httpAuth/app/rest/builds/running:any,branch:develop)[D] sending NewData(Network) to <XTSideBarDataSource: 0x600000091440>

是的,你走在正确的轨道上。 "*" 只匹配单个路径段;请尝试 "**"