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.

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

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵