我创建了一个休息服务,其输出形式为
{
"id": "1905",
"groupId": "724",
"giftingId": null,
"name": "This is a great service",
}
我正在使用 AFNetworking http 客户端调用此服务。它的输出是
{
name = "This is a great service";
id = 1905;
groupId = 724;
giftingId = "<null>";
}
当它为空时,我无法解析那个赠送的 ID。我只是想将数据解析为 NSString?当 JSON 作为字符串发送时,为什么将它们解析为整数?