我使用数组从SQL server
使用AFHTTPRequest
和DCKeyValueObjectMapping
获取数据来解析我得到的JSON
数据并将其作为数组
NSArray *chSpot = [parser parseArray:responseObject];
我有名为LocationLat
和LocationLong
的元素我想访问它们并打印出来
答案 0 :(得分:1)
我看到chSpot有3个对象,不知道你想得到什么(全部或者一个)。无论如何,你可以通过以下方式得到指数0(第一点)的纬度,长点:
DBObject textSearchCommand = new BasicDBObject();
textSearchCommand.put("text", "profile");
textSearchCommand.put("search", pattern);
textSearchCommand.put("limit", searchLimit);
textSearchCommand.put("filter",new BasicDBObject("personInfo", new BasicDBObject("$ne",null)));
CommandResult commandResult = mongoTemplate.executeCommand(textSearchCommand);
BasicDBList results = (BasicDBList) commandResult.get("results");