duandianzhong8315 2015-12-23 04:21
浏览 45
已采纳

如何将字符串和数据从iOS发送到Php,以便在MySQL数据库中创建表

I'm trying to find a way to pass a string and a json data file to an online Php file, which will create a table in a MySQL database using the string as the table name, and put the json data into the table. So far I have the following code on the iOS side:

NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    NSURLSession *urlSession = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
    NSURL *url = [NSURL URLWithString:@"http://myWebAddress/uploadData.php"];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"POST"];
    [request setValue:@"application/json; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
    [request setHTTPBody:self.myData];

    NSURLSessionDataTask *sessionDataTask = [urlSession dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
        if (error) {
            NSLog(@"%@", error);
        } else {
            self.textLabel.text=@"Data uploaded to database!";
        }
    }];
    [sessionDataTask resume];

On the web side, I have the following Php code:

<?php
$json_data=file_get_contents('php://input', true);
$post_data = json_decode($json_data);
$dbc=mysql_connect("mysql", "userName", "password");
mysql_select_db("myDatabase");
foreach($post_data as $lineData)
{$lastName=$lineData->lastName;
$firstName=$lineData->firstName;
$company=$lineData->company;
mysql_query("INSERT INTO `peopleDataTable` (`lastName`, `firstName`, `company`) VALUES ('$lastName', '$firstName', '$company')");}
mysql_close($dbc);
if (is_array($post_data))
$response = array("status" => "ok", "code" => 0, "original request" => $post_data);
else
$response = array("status" => "error", "code" => -1, "original_request" => $post_data);
$processed = json_encode($response);
echo $processed;
?>

Could you help me to find a solution to modify this codes so that I can send a string to the Php, and use the string to specify the table name "peopleDataTable"?

Or I should completely modify the code?

Thank you very much!

Paul

  • 写回答

1条回答 默认 最新

  • doucong8553 2015-12-23 04:52
    关注

    Please review the below link to pass data as parameter , else you can use AFNetwork for data transfer which has pretty easy methods.

    http://hayageek.com/ios-nsurlsession-example/

    -(void)requestFunction:(NSString *)main_url :(NSMutableDictionary *)parameters :(BOOL)post
    {
         __block NSString *response_string;
         __block NSData *objectData;
         __block NSMutableDictionary *json;
        NSURL *baseURL=[NSURL URLWithString:BASE_URL];
    
        manager = [[AFHTTPSessionManager alloc] initWithBaseURL:baseURL];
        manager.responseSerializer = [AFHTTPResponseSerializer serializer];
    
    
        if (post == NO)
        {
            [manager GET:main_url parameters:parameters success:^(NSURLSessionDataTask *task, id responseObject)
             {
                 response_string=[[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
                 objectData = [response_string dataUsingEncoding:NSUTF8StringEncoding];
                 NSError *jsonError;
                 json = [NSJSONSerialization JSONObjectWithData:objectData
                                                        options:NSJSONReadingMutableContainers
                                                          error:&jsonError];
                   [[self delegate] apiResponse:json];
                } failure:^(NSURLSessionDataTask *task, NSError *error)
                    {
                          STOP_LOAD;
                           NSLog(@"%@",error);
                        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Server Error, Please try again later"
                                                                     message:[error localizedDescription]
                                                                    delegate:nil
                                                           cancelButtonTitle:@"Ok"
                                                           otherButtonTitles:nil];
                      [alertView show];
                      }];
    
        }
        else
        {
            [manager POST:main_url parameters:parameters success:^(NSURLSessionDataTask *task, id responseObject)
            {
                response_string=[[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
                objectData = [response_string dataUsingEncoding:NSUTF8StringEncoding];
                NSError *jsonError;
                json = [NSJSONSerialization JSONObjectWithData:objectData
                                                       options:NSJSONReadingMutableContainers
                                                         error:&jsonError];
               // [self requestComplete:json];
                   [[self delegate] apiResponse:json];
    
            }
                  failure:^(NSURLSessionDataTask *task, NSError *error) {
                        NSLog(@"%@",error);
                        STOP_LOAD;
                            UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Server Error,Please try again later"
                                                                                   message:[error localizedDescription]
                                                                                  delegate:nil
                                                                         cancelButtonTitle:@"Ok"
                                                                         otherButtonTitles:nil];
                               [alertView show];
    
                      }];
        }
    
    
    }
    

    You can see my code , i just call this method like below,

    -(void)Login: (NSString *) User_fb_id
    {
         NSMutableDictionary *api_call_parameter=[[NSMutableDictionary alloc] init];
          [api_call_parameter setObject:User_fb_id forKey:@"user_fb_id"];
          [api_call_parameter setObject:@"ios" forKey:@"device_type"];
          [api_call_parameter setObject:Device_Token forKey:@"device_id"];
    
          [self requestFunction:LOGIN :api_call_parameter :YES];
    }
    

    So you can pass the data through this dictionary as parameter.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料