1

我用 PHP 开发了一个 web 服务。它使用 MySQL 数据库。在这方面,我使用了 JSON。我想在我的 iPhone 应用程序中从此网络服务中获取数据。我使用了一个有一个参数的函数。如何在 iPhone 中使用它?

网络服务:

<?php

echo getdata($_REQUEST['lastupdate']);

function getdata($lastupdatedate){

    $json = '{"foo-bar": 12345}';



    $obj = json_decode($json);

    //print $obj->{'foo-bar'}; // 12345



    $con = mysql_connect("localhost","un","pwd");



    if (!$con)



    {



    die('Could not connect: ' . mysql_error());



    }

    //print_r($con);



    mysql_select_db("roster", $con);







    $query = "select * from rates where LastUpdated = '".$lastupdatedate."' order by LastUpdated limit 1";

    $rs = mysql_query($query) or die($query);

    //print_r($rs);

    while($row=mysql_fetch_assoc($rs)){

    $record[] = $row;

    }



    $data = json_encode($record);



    header('Cache-Control: no-cache, must-revalidate');

    header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');

    header('Content-type: application/json');

    return $data;

}

?>

我正在请求网址:http://domain/t1.php?lastupdate=2012-09-01 01:00:00.

4

1 回答 1

0

您将创建一个请求http://domain/t1.php?lastupdate=2012-09-01 01:00:00,然后解析您的响应 JSON。

根据您的代码应该如何运行(加载或基于某些用户操作),您的代码应该类似于来自raywenderlich.com的示例

基本代码片段:

- (void)viewDidLoad
{
    [super viewDidLoad];

    dispatch_async(kBgQueue, ^{
        NSData* data = [NSData dataWithContentsOfURL:yourURLValue];
        [self performSelectorOnMainThread:@selector(fetchedData:) 
          withObject:data waitUntilDone:YES];
    });
}

- (void)fetchedData:(NSData *)responseData {
    //parse out the json data
    NSError* error;
    NSDictionary* json = [NSJSONSerialization 
        JSONObjectWithData:responseData //1

        options:kNilOptions 
        error:&error];

    NSArray* JSONResultValues = [json objectForKey:@"yourKey"]; //2

    NSLog(@"Results: %@", JSONResultValues); //3
}
于 2012-10-01T12:11:51.927 回答