0

我正在尝试使用 JSON 来解析 php 文件中的一些输出,该文件有望从我的 MySQL 数据库中返回一些数据。但是,我收到错误消息:-JSONValue 失败。错误是:令牌 [A] 的非法开始。php 脚本返回一个字典数组,用于在地图上绘制注释。我究竟做错了什么?

- (void)getDeviceLocations {

    NSLog(@"Getting Device Locations");

    NSString *hostStr = @"http://98.246.50.81/firecom/api/getdevicelocations.php";
    NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:hostStr]];
    NSString *serverOutput = [[NSString alloc] initWithData:dataURL encoding: NSASCIIStringEncoding];
    id object = [serverOutput JSONValue];
    NSMutableArray *array = (NSMutableArray *)object;

    for (NSDictionary *dictionary in array) {

        CLLocationCoordinate2D coord = {[[dictionary objectForKey:@"latitude"] doubleValue], [[dictionary objectForKey:@"longitude"] doubleValue]};

        Annotation *ann = [[Annotation alloc] init];
        ann.title = [dictionary objectForKey:@"deviceid"];
        ann.coordinate = coord;
        [mapView addAnnotation:ann];
    }
}
4

1 回答 1

0

正如我评论的那样,您的 JSON 无效。您应该像这样返回一个有效的 JSON(使用您的数据)

[
  {
    "latitude": 45.5113,
    "deviceid": "E19 iPad",
    "longitude": "-122.800233"
  },
  {
    "latitude": 45.5458,
    "deviceid": "E05 iPad",
    "longitude": "-122.9588931798935"
  },
  {
    "latitude": 45.5207,
    "deviceid": "E01 iPad",
    "longitude": "-122.98941537737846"
  }
]

我认为最好尝试使用默认的 php JSON 编码方法 json_encode来生成 json 字符串。

于 2012-12-28T04:23:47.140 回答