1

我正在构建一个查询数据库的 IOS 应用程序。我总是把结果弄得乱七八糟,在应用程序的某些功能中,比如评论,让它们井井有条是至关重要的。很明显 JSON 正在返回一个字典,但我需要排序的结果。这是服务器端代码:

function sendResponse($status = 200, $body = '', $content_type = 'text/html') {
  $status_header = 'HTTP/1.1 ' . $status . ' ' . getStatusCodeMessage($status);
  header($status_header);
  header('Content-type: ' . $content_type);
  echo $body;
}

$result = array();
$i = 0;
$sqlGetComments = mysqli_query($link, "SELECT * FROM photo_comments WHERE photo_id='$photoID' ORDER BY post_date DESC");
while ($row = mysqli_fetch_array($sqlGetComments)) {
  $result[$i] = array(
      'photoID' => $row['photo_id'],
      'userID' => $row['userID'],
      'username' => $row['username'],
      'comment' => $row['comment'],
      'postedDate' => $row['post_date'],
    );
    $i++;
} // end while

sendResponse(200, json_encode($result));

我有解析它的 IOS 代码,但与我需要它的顺序不符。所以必须有一些我可以在服务器端做的事情。

更新,这是客户端代码:

[request setCompletionBlock:^{
    NSString *responseString = [request responseString];
   [self updateComments:responseString];
}];


- (void)updateComments:(NSString *)update {
     NSDictionary *root = [update JSONValue];
     NSEnumerator *enumerator = [root keyEnumerator];
     id key;
     while (key = [enumerator nextObject]) {
        NSDictionary *value = [root objectForKey:key];
       _photoID = [value objectForKey:@"photoID"];
       NSString *photoID = [value objectForKey:@"photoID"];
       NSString *userID = [value objectForKey:@"userID"];
       NSString *username = [value objectForKey:@"username"];
       NSString *comment = [value objectForKey:@"comment"];
       NSString *postedDate = [value objectForKey:@"postedDate"];

       NSString *cellString = [NSString stringWithFormat:@"%@ \n %@ \n %@", username, comment, postedDate];

       [_queryResultsMessage addObject:cellString];
     }
     [_tableView reloadData];
}

这是打印输出,请记住注释字段中的“测试”字符串是 JSON 字符串应该如何打印出来:

{"1":{"photoID":"1","userID":"17","username":"kismet","comment":"Test 6","postedDate":"7 hrs ago"},"2":{"photoID":"1","userID":"17","username":"kismet","comment":"Test 5","postedDate":"8 hrs ago"},"3":{"photoID":"1","userID":"17","username":"kismet","comment":"Test 4","postedDate":"8 hrs ago"},"4":{"photoID":"1","userID":"17","username":"kismet","comment":"Test 3","postedDate":"8 hrs ago"},"5":{"photoID":"1","userID":"17","username":"kismet","comment":"Test 2","postedDate":"8 hrs ago"},"6":{"photoID":"1","userID":"17","username":"kismet","comment":"Test 1","postedDate":"8 hrs ago"}}

它可以打印出来,但我猜它在分配给 NSDictionary 时会变得混乱。如果没有人有任何答案,我会尝试通过将它分配给 NSArray 来摆弄它,看看我是否能以某种方式解析它。

4

3 回答 3

1

需要一点客户端 IOS 黑客

对于那些仍然对解决方案感兴趣的人:

NSDictionary *userData = [update JSONValue];
NSArray *keys = [[userData allKeys] sortedArrayUsingSelector:@selector(compare:)];
NSMutableArray *array = [NSMutableArray arrayWithCapacity: [keys count]];

int i = 0;
for (NSString *key in keys) {
    [array addObject: [userData objectForKey: key]];
    i++;
}

for (NSDictionary *myDict in array) {
    NSString *comment = [myDict objectForKey:@"comment"];
    NSLog(@"USERCOMMENT %@", comment);
}

按顺序返回 JSON:

USERCOMMENT Test 6
USERCOMMENT Test 5
USERCOMMENT Test 4
USERCOMMENT Test 3
USERCOMMENT Test 2
USERCOMMENT Test 1
于 2012-07-07T21:36:11.317 回答
0

值得注意的是 - 您正在请求从 MySQL 订购的项目 - 因此,PHP 正在按顺序生成 JSON。

因此,我只是建议在 PHP 中编辑循环...

while ($row = mysqli_fetch_array($sqlGetComments)) {
  $result[$i] = array(
      'photoID' => $row['photo_id'],
      'userID' => $row['userID'],
      'username' => $row['username'],
      'comment' => $row['comment'],
      'postedDate' => $row['postedDate'],
      'orderBy' => $i
    );
    $i++;
} // end while

...并通过 Obj-C 中的“orderBy”组织它们。

请注意,我所做的只是向 JSON 项目添加一个额外的变量 - “orderBy”;由于 MySQL 结果将按正确的顺序排列,因此以正确的顺序解析,这个“orderBy”变量可以像一个键一样起作用。

自从我使用 iOS SDK 以来已经有一段时间了——但我很确定它们将是一种对 NSMutableArray 进行排序的方法;如果不是 - 一个简单的循环可以工作;使用 x 的键请求每个对象,而 x < NSMutableArray 的长度。但是,我会查找“正确”的做法,因为那会让我烦恼!

我建议调查结果乱序背后的真正原因!那不应该发生!我在 iOS 中没有做过类似的事情,但我认为这不是请求 JSON 时的正确行为。

故障排除步骤可能是在浏览器或桌面环境中检查返回的 JSON,并确保 PHP 正确返回它,然后查看它是如何返回到应用程序的 - 确保所有数据都存在以及是否存在顺序失真的模式.

编辑:我注意到你说它返回了一个字典数组。我的错。 我确实发现了另一个对字典数组进行排序的问题

于 2012-07-06T02:06:37.750 回答
0

在您的 MySql 查询中,您正在对 进行排序post_date,但postedDate在将其添加到结果数组时请参考。两者都存在吗?

如果post_date实际上不存在,那么您的数据库查询未按预期排序...

于 2012-07-06T03:07:46.427 回答