0

そのため、使用するサーバーにphp登録スクリプトがあります。

テキスト ボックス (またはこれらのボックスの内容に関連する変数/ポインター) の入力を取得し、ユーザーを登録するためにそれらを URL にスローするにはどうすればよいですか。繰り返しますが、PHP はすべて SQL データベースと同様にセットアップされていますが、iOS で問題が発生しています。

例:

VARIABLE --- PURPOSE
uname        username
pass         password
name         first name
lname        last name

今、私はこれをこのようなURLに投げる必要があります

https://mywebsite/register.php?username=uname&password=pass&firstname=name&lastname=lname&sumbit=submit

スクリプトは問題なく動作します。これを iOS に実装する際に助けが必要です。

よろしくお願いします。あなたたちは素晴らしいです!

4

3 に答える 3

2

次のように、NSURLConnection を NSMutableURLRequest と組み合わせて使用​​できます。

//Prepare URL for post
NSURL *url = [NSURL URLWithString: @"https://mywebsite/register.php"];

//Prepare the string for your post (do whatever is necessary)
NSString *postString = [@"username=" stringByAppendingFormat: @"%@&password=%@", uname, pass];

//Prepare data for post
NSData *postData = [postString dataUsingEncoding:NSUTF8StringEncoding];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];

//Prepare request object
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setTimeoutInterval:20];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];

//send post using NSURLConnection
NSURLConnection connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];

//Connection should never be nil
NSAssert(connection != nil, @"Failure to create URL connection.");

これにより (必要に応じて調整された postString を使用して) POST 要求が非同期的に (アプリのバックグラウンドで) サーバーに送信され、サーバー上のスクリプトが実行されます。

サーバーも応答を返していると仮定すると、次のように聞くことができ
ますNSURLConnection connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];:

接続が応答を返すと、次の 3 つのメソッドが呼び出されます (上記のコードと同じクラスに配置します)。

-(void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response
{
    //Initialize received data object        
        self.receivedData = [NSMutableData data];
        [self.receivedData setLength:0];

    //You also might want to check if the HTTP Response is ok (no timeout, etc.) 
}

-(void)connection:(NSURLConnection*)connection didReceiveData:(NSData*)data
{     
    [self.receivedData appendData:data];
}

-(void)connection:(NSURLConnection*)connection didFailWithError:(NSError*)error
{
    NSLog(@"Connection failed with err");
}

-(void)connectionDidFinishLoading:(NSURLConnection*)connection
{
    //Connection finished loading. Processing the server answer goes here.

}

https 接続/リクエストに伴うサーバー認証を処理する必要があることに注意してください。サーバー証明書を許可するには、次のソリューションに頼ることができます (ただし、これは迅速なプロトタイピングとテストのために推奨されるだけです): How to use NSURLConnection to connect with SSL for an untrusted cert?

それが役に立ったことを願っています。

于 2012-11-04T13:09:08.043 に答える
1

これを試してください:

url.php

<?php 
    //https://mywebsite/register.php?username=uname&password=pass&firstname=name&lastname=lname&sumbit=submit

    function make_safe_for_use($var){
        // run some validation here
        return($var);
    }


    if($_POST){
        //$url_username = $_POST['username']; // <--- this will work fine... but no validation...
        $url_username = make_safe_for_use($_POST['username']);
        $url_password = make_safe_for_use($_POST['password']);
        $url_firstname = make_safe_for_use($_POST['firstname']);
        $url_lastname = make_safe_for_use($_POST['lastname']);


        if($url_username > "" && $url_password > "" && $url_firstname > "" && $url_lastname > ""){
            // if all of the variables are set, then use them....
            $url = "register.php?username=".$url_username."&password=".$url_password."&firstname=".$url_firstname."&lastname=".$url_lastname."&sumbit=submit";
            header("Location: ".$url);
            exit(); // prevents any more code executing and redirects to the url above
        }
    }

?>
<form action="url.php" method="post">
    (Remove the value="donkeykong" part of each of the following, here for demo)<br /><br />
    Username <input type="text" name="username" id="username" value="donkeykong" /><br />
    Password <input type="password" name="password" id="password" value="cheese123" /><br />
    Firstname <input type="text" name="firstname" id="firstname" value="bruce" /><br />
    Lastname <input type="text" name="lastname" id="lastname" value="wayne" /><br />
    <input type="submit" value="go" />
</form>

register.php

<?php

    //print_r($_GET); // - for testing

    if($_GET){

        $url_username = $_GET['username'];
        $url_password = $_GET['password'];
        $url_firstname = $_GET['firstname'];
        $url_lastname = $_GET['lastname'];

        echo "username: ".$url_username."<br />";
        echo "password: ".$url_password."<br />";
        echo "firstname: ".$url_firstname."<br />";
        echo "lastname: ".$url_lastname."<br />";
    }

?>
于 2012-11-04T10:09:32.687 に答える
1

これには、NSMutableURLRequest を使用します。

setHTTPMethod を GET メソッドとして設定します。

各値について、次のように定義します。

[request setValue:value forHTTPHeaderField:key];
于 2012-11-04T08:46:46.720 に答える