我一直在关注SWXMLHash上的示例来反序列化XML文件。它工作得很好,但我不确定如何在XML输入不完整时处理案例:
例如,假设XML输入是:
<shippingInfo>
<shippingServiceCost currencyId="USD">0.0</shippingServiceCost>
<shippingType>Free</shippingType>
<shipToLocations>US</shipToLocations>
<expeditedShipping>true</expeditedShipping>
<oneDayShippingAvailable>false</oneDayShippingAvailable>
<handlingTime>1</handlingTime>
</shippingInfo>
为了反序列化这个XML,我创建了以下结构,它是一个XMLIndexerDeserializable
import SWXMLHash
struct ShippingInfo: XMLIndexerDeserializable
{
let currencyId: String
let shippingServiceCost: Double
let shippingType: String
let shipToLocations: String
let expeditedShipping: Bool
let oneDayShippingAvailable: Bool
let handlingTime: Int
static func deserialize(_ node: XMLIndexer) throws -> ShippingInfo
{
return try ShippingInfo(
currencyId: node["shippingServiceCost"].value(ofAttribute: "currencyId"),
shippingServiceCost: node["shippingServiceCost"].value(),
shippingType: node["shippingType"].value(),
shipToLocations: node["shipToLocations"].value(),
expeditedShipping: node["expeditedShipping"].value(),
oneDayShippingAvailable: node["oneDayShippingAvailable"].value(),
handlingTime: node["handlingTime"].value()
)
}
}
上面的代码有效,直到shippingInfo XML错过了一个元素,如下所示:
<shippingInfo>
<shippingServiceCost currencyId="USD">0.0</shippingServiceCost>
<shippingType>Free</shippingType>
<shipToLocations>Worldwide</shipToLocations>
<expeditedShipping>false</expeditedShipping>
<oneDayShippingAvailable>false</oneDayShippingAvailable>
</shippingInfo>
上面的第二个XML缺少属性&#34; handlingTime&#34; 。运行上面的反序列化代码会在节点处出现异常[&#34; handlingTime&#34;]。value()
解决此问题的一种方法是在我们访问XMLIndexer的密钥时尝试捕获异常,并在抛出异常时将默认值传递给属性,这意味着密钥不是那里。我不认为这是最好的方法。
当XML缺少属性时,反序列化XML的最佳方法是什么?
答案 0 :(得分:1)
将handlingTime
属性的声明从Int
更改为Int?
,如下所示:
let handlingTime: Int?
它必须是可空的,以便反序列化可以支持一个不存在的值。
希望这有帮助!