如何通过我的iOS应用程序将帖子请求发送到我的Mac上的php服务器?

时间:2014-12-24 08:44:39

标签: php ios post

我正在编写一个需要将发布请求发送到php服务器的ios应用程序。服务器位于我的localhost中,其地址为Macintosh HD\Applications\MAMP\htdocs\amniat\server_2.php

在我的xcode应用程序中,我有代码:

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString: @"http://192.168.128.251/amniat/server_2.php"]];
    [request setValue:@"*" forHTTPHeaderField:@"Accept-Encoding"];
    [request setHTTPBody:[[NSString stringWithFormat:@"voice=%@",data] dataUsingEncoding:NSUTF8StringEncoding]];
    [request setHTTPMethod:@"POST"];
    NSError *error = nil;
    NSURLResponse *response = nil;
    NSData *data1 = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    if (error) {
        NSLog(@"Error:%@", error.localizedDescription);
    }
    else {
        //success
        NSLog(@"Succeess");
    }

其中192.168.128.251是我当前的IP。

当我运行代码时,我总是得到can not connect to server例外。

任何人都可以帮助我吗?

0 个答案:

没有答案