我需要的
"sampleId":"[{\"TextVal\":\"10233\"}]"
我在哪里
NSDictionary *sampledict=@{@"TextVal": @"10233"};
NSArray *arr=[NSArray arrayWithObject:sampledict];
[dict setObject:arr forKey:@"sampleId"];
但是将其转换为 json 文本给了我
"sampleId":[{TextVal:10233}]
有没有办法获得价值{\"TextVal\":\"10233\"}
?这是针对具有以下内容的 POST 数据的 Web 服务调用。当排除此 \ 时,Web 服务给了我错误的请求错误。因此要求
请注意我AFNetworking
用于网络数据获取的目的