JSON 写入 (RTCIceCandidate) 中的类型无效

Invalid type in JSON write (RTCIceCandidate)

提问人:Nirav Kotecha 提问时间:5/19/2021 最后编辑:Nirav Kotecha 更新时间:5/19/2021 访问量:83

问:

我正在使用 websocket 来调用接收、接受和所有。接受调用时,我收到 websocket 事件。

WebSocket 接受事件输出:-

{
    action = signal;
    "call_id" = 60a4d5b4850b3875f95dbc6e;
    event = CALL;
    from = 5b30ec0fa4cef4609038470b;
    id = "330A1A48-A6BA-4B29-A4A2-9D9FDB85144D";
    signal =     {
        offer = "RTC_OBJC_TYPE(RTCIceCandidate):\naudio\n0\ncandidate:1211696075 1 udp 41885439 3.8.66.208 62545 typ relay raddr 0.0.0.0 rport 0 generation 0 ufrag DT/j network-id 1 network-cost 10\nturn:3.8.66.208:3478?transport=udp";
    };
    to = 5b4854724f82e91934c1c475;
}

我正在使用以下代码将上面的字典对象转换为json字符串。

-(NSString *)convertDictionaryToJsonString:(NSMutableDictionary *)dict {
    NSError *error;
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:&error];
    NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    return jsonString;
}

问题:-应用程序崩溃,原因是-'Invalid type in JSON write (RTCIceCandidate)'

谁能知道如何避免崩溃并解决这个问题?

谢谢。

iOS JSON Objective-C 字典 Websocket

评论

0赞 Larme 5/19/2021
你的字典看起来不错。你能说更多关于(有一个对象吗?真的是自定义描述吗?dictRTCIceCandidatedict[@"signal"][@"offer]NSString
0赞 Nirav Kotecha 5/19/2021
(RTCIceCandidate) - 它位于“offer”键值中,但整个内容是字符串。所以它可能是工作。
0赞 Nirav Kotecha 5/19/2021
@Larme我已经编辑了问题,并给出了完整的回答dict
0赞 Larme 5/19/2021
你的 pod 中的代码是 github.com/WebKit/WebKit/blob/ 吗?否则,您能否检查每个属性的类型:.我想它又回来了,因为就是这样:github.com/WebKit/WebKit/blob/......NSLog(@"Class: %@", NSStringFromClass([dict[@"signal"][@"offer] class]));RTCIceCandidatedescription
0赞 Nirav Kotecha 5/19/2021
好的,让我放日志并检查

答:

1赞 Larme 5/19/2021 #1

以下是 JSON 的有效类型:

可以转换为 JSON 的 Foundation 对象必须具有以下属性:

  • 顶级对象是 or 。NSArrayNSDictionary
  • 所有对象都是 、 、 、 或 的实例。NSStringNSNumberNSArrayNSDictionaryNSNull
  • 所有字典键都是 的实例。NSString
  • 数字不是 或 .NaNinfinity

您的错误是说,在某个时候,有一个对象不是允许的类型,它是 .RTCIceCandidate

看到让你认为它确实是一个 BUT,如果我们看到 的代码(因为它是罪魁祸首类),我们会看到一个覆盖描述"RTC_OBJC_TYPE(RTCIceCandidate):\naudio\n0\ncandidate:1211696075 1 udp 41885439 3.8.66.208 62545 typ relay raddr 0.0.0.0 rport 0 generation 0 ufrag DT/j network-id 1 network-cost 10\nturn:3.8.66.208:3478?transport=udp"NSStringRTCIceCandidate

- (NSString *)description {
  return [NSString stringWithFormat:@"RTCIceCandidate:\n%@\n%d\n%@\n%@",
                                    _sdpMid,
                                    _sdpMLineIndex,
                                    _sdp,
                                    _serverUrl];
}

有一个 RTCIceCandidate+JSON 扩展,它提供了一些有趣的方法来转换为 JSONString/JSONData。RTCIceCandidate

您需要将罪魁祸首对象替换为允许类的对象。

RTCIceCandidate *candidate = dict["signal"]["offer"];
NSString/NSDictionary *candidateValid = //Whatever the method you want with a method from RTCIceCandidate+JSON, custom one ?

dict[@"signal"] = @{@"offer": candidateValid}; //Because I guess that dict[@"signal"] is in a fact a `NSDictionary` and not a `NSMutableDictionary`

//Current code