Argo错误:对成员'咖喱'

时间:2015-10-28 11:05:01

标签: swift2 xcode7.1

我是Github Argo 的新手(因为无法在Swift中使用JSonModel)。我在创建新模型时遇到错误但不知道如何修复。请参阅图片了解更多细节。

enter image description here

1 个答案:

答案 0 :(得分:1)

我确定你已经解决了,但也许这可以帮助其他人阅读这个问题:

在第一个参数上,函数应该是map(< ^>)不适用(< *>)

static func decode(j: JSON) -> Decoded<CountryState> {
        return curry(CountryState.init)
            <^> j <| "id"
            <*> j <| "name"
            <*> j <| "abbrev"
}