我在创建结构时遇到问题。
我的结构:
public struct Device: Codable {
let data: DeviceData
let meta: Meta?
}
public struct DeviceData: Codable {
let deviceID: String?
let type: String?
let attributes: Attributes?
private enum CodingKeys: String, CodingKey {
case deviceID = "id"
case type
case attributes
}
}
public struct Attributes: Codable {
let name: String?
let asdf: String?
let payload: Payload?
}
public struct Payload: Codable {
let example: String?
}
public struct Meta: Codable {
let currentPage: Int?
let nextPage: Int?
let deviceID: [String]?
}
当我现在想使用以下方法创建此结构的元素时:
var exampleData = Device(
data: DeviceData(
type: "messages",
attributes: Attributes(
name: "Hello World",
asdf: "This is my message",
payload: Payload(
example: "World"
)
)
),
meta: Meta(
deviceID: ["asfd-asdf-asdf-asdf-asdfcasdf"]
)
)
我会得到一个错误。无法详细指定此错误,因为当我删除“ meta”元素(因为它是可选的)时,会发生另一个错误...此特定代码的错误消息是:
通话中额外的参数“元”
我希望有人能帮助我。
答案 0 :(得分:2)
您忘记了对deviceID:
的调用的DeviceData.init(deviceID:type:attributes:)
命名参数,并且也忘记了currentPage
的{{1}}和nextPage
命名参数。
以下是一个编译示例:
Meta.init(currentPage:nextPage:deviceID)
答案 1 :(得分:2)
您已经省略了DeviceData
和Meta
初始化程序的参数。在对另一个答案的评论中,您要求:
我是否必须添加它们并将它们设置为nil,即使它们是可选的?也许那是我的问题!
您可以这样做,例如像这样:
meta: Meta(currentPage: nil,
nextPage: nil,
deviceID: ["asfd-asdf-asdf-asdf-asdfcasdf"]
)
或者,您可以编写自己的初始化程序,而不是依赖于默认的成员初始化程序,并在那里提供默认值,而不是在每次调用时提供默认值,例如像这样:
init(currentPage : Int? = nil, nextPage : Int? = nil, deviceID : [String]? = nil)
{
self.currentPage = currentPage
self.nextPage = nextPage
self.deviceID = deviceID
}
您的原始通话省略了currentPage
和nextPage
,将是有效的,并将这两个通话设置为nil
。
HTH