提问人:Nirav Kotecha 提问时间:5/19/2021 最后编辑:Nirav Kotecha 更新时间:5/19/2021 访问量:83
JSON 写入 (RTCIceCandidate) 中的类型无效
Invalid type in JSON write (RTCIceCandidate)
问:
我正在使用 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)'
谁能知道如何避免崩溃并解决这个问题?
谢谢。
答:
1赞
Larme
5/19/2021
#1
以下是 JSON 的有效类型:
可以转换为 JSON 的 Foundation 对象必须具有以下属性:
- 顶级对象是 or 。
NSArray
NSDictionary
- 所有对象都是 、 、 、 或 的实例。
NSString
NSNumber
NSArray
NSDictionary
NSNull
- 所有字典键都是 的实例。
NSString
- 数字不是 或 .
NaN
infinity
您的错误是说,在某个时候,有一个对象不是允许的类型,它是 .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"
NSString
RTCIceCandidate
- (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
评论
dict
RTCIceCandidate
dict[@"signal"][@"offer]
NSString
dict
NSLog(@"Class: %@", NSStringFromClass([dict[@"signal"][@"offer] class]));
RTCIceCandidate
description