zoukankan      html  css  js  c++  java
  • Get&Post请求和MIMEType

    1.GET请求:

     NSString *urlStr = [NSStringstringWithFormat:@"http://192.168.3.251/~apple/itcast/login.php?username=%@&password=%@",_userName.text,_password.text];

        

        NSURL *url = [NSURL URLWithString:urlStr];

        

        NSURLRequest *request = [NSURLRequestrequestWithURL:url];

        

        NSURLConnection *connection = [NSURLConnectionconnectionWithRequest:request delegate:self];

        

        [connection start];

    2.POST请求

     NSString *urlStr = [NSStringstringWithFormat:@"http://192.168.3.251/~apple/itcast/login.php"];

        NSURL *url = [NSURL URLWithString:urlStr];

        

        NSMutableURLRequest *request = [NSMutableURLRequestrequestWithURL:url];

        

        request.HTTPMethod = @"POST";

        

        NSString *bodyStr = [NSStringstringWithFormat:@"username=%@&password=%@",_userName.text,_password.text];

        request.HTTPBody = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];

        

        NSURLConnection *connection = [NSURLConnectionconnectionWithRequest:request delegate:self];

        

        [connection start];

    3.同步请求,和异步请求

    //异步请求

      [NSURLConnection sendAsynchronousRequest:<#(NSURLRequest *)#> queue:<#(NSOperationQueue *)#> completionHandler:<#^(NSURLResponse *response, NSData *data, NSError *connectionError)handler#>];

    //同步请求

        [NSURLConnection sendSynchronousRequest:<#(NSURLRequest *)#> returningResponse:<#(NSURLResponse *__autoreleasing *)#> error:<#(NSError *__autoreleasing *)#>];

    4.数据安全

    MD5

    5.MiMEType

    .txt--------->ext/plain

    .pdf-------->application/pdf

    .docx ---------->application/vnd.openxmlformats-officedocument.wordprocessingml.document

    .html--------->text/html

  • 相关阅读:
    github设置添加SSH
    利用ForgeryPy生成虚拟数据
    使用python的email、smtplib、poplib模块收发邮件
    charles系列破解激活办法(最高charles4.2.5都可以激活,亲测可用)
    percona-toolkit 之 【pt-online-schema-change】说明
    针对跑MySQL的Linux优化【转】
    MySQL 利用SQL线程对Binlog操作
    MySQL 四种事务隔离级的说明
    Innodb锁机制:Next-Key Lock 浅谈
    INNODB自增主键的一些问题
  • 原文地址:https://www.cnblogs.com/yinqiang/p/3496254.html
Copyright © 2011-2022 走看看