iPhone 应用程序中的表格

问题描述 投票:0回答:2

我正在制作一个 iPhone 应用程序,它需要我使用网站表单将值存入数据库,并且我可以通过我的 iPhone 应用程序以 JSON 形式查询。

现在我在想,既然我的网站表单只有 5-6 个字段需要填写,我可以在我的 iPhone 应用程序本身中制作一个表单吗?然后我可以将该表单数据以 JSON 格式发送到网络服务器。 请有人指导我。

iphone ios ios5
2个回答
1
投票

您可以通过邮寄方式将数据发送给jason。

-(void)registration:(NSString *)nickName 
  TeamName:(NSString *)teamName
  Age:(NSString *)age
  Nationality:(NSString *)countryName

{   
NSString *JSON = [NSString stringWithFormat:@"{\"NICKNAME\":\"%@\"",nickName];
JSON = [JSON stringByAppendingFormat:@",\"TEAM_NAME\":\"%@\"",teamName];
JSON = [JSON stringByAppendingFormat:@",\"AGE\":\"%@\"",age];
JSON = [JSON stringByAppendingFormat:@",\"NATIONALITY\":\"%@\"",countryName];
NSLog(@"%@", JSON);

  NSData *postData = [JSON dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES];    
  NSString *strURL = [NSString stringWithFormat:@"%@%@", kServerPath, kUserRegisterPath];

NSLog(@"Resgistration URL: %@", strURL);

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:strURL] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:120.0];    

[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];

[request setHTTPBody:postData];

NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:request delegate:[WebServices sharedInstance]];


if(theConnection) {
    NSLog(@"connection made");
}

else {
    NSLog(@"theConnection is NULL");

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error " message:@"Network not responding"  delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alert show];
}

}

http://iosdevelopertips.com/networking/iphone-json-flickr-tutorial-part-1.html

iPhone/iOS JSON解析教程

这些链接可能对您有帮助


0
投票

切坦·帕特尔 17岁 电话号码 8369607690 国家 印度 城市 孟买 Rishi 塔 1 A 翼 靠近 Rajnagar Dahisar 东地铁站

© www.soinside.com 2019 - 2024. All rights reserved.