0

RestKit APIを使用して、自分のWebサイトのドロップダウンメニューからアイテムを選択する方法を探しています。Webを検索しましたが、関連する結果が得られません。ドロップダウンメニューのHTMLコードは次のとおりです。

<form class="myProfile" method="POST">
    <div class="myProfile">Which one is your favorite soccer team?
    <select class="team_selection" name="favTeamID" id="favTeamID" onchange="JavaScript:submit()">
<option value="">Select One...</option>
<option value="203">Manchester</option>
<option value="1">Barcelona</option>
<option value="2">Chelsea</option>
</select>

次のコードを使用して、キー値「name」と「id」をPOSTしようとしました。

[RKClient clientWithBaseURLString:@"http://MyWebsite.com"];

    NSDictionary* params = [NSDictionary dictionaryWithObjectsAndKeys:
                            @"Barcelona", @"name",
                            @"1", @"id",
                            nil];

    RKRequest *request = [[RKClient sharedClient] post:@"/profile.php" params:params delegate:self];
    [request setUserData:@"selectFavoriteTeam"];

しかし、それは機能していません。誰か助けていただければ幸いです。

4

1 に答える 1

0

私はそれを理解しました、私はここにコードがありますfavTeamIDにPOSTする必要があります:

[RKClient clientWithBaseURLString:@"http://MyWebsite.com"];

    NSDictionary* params = [NSDictionary dictionaryWithObjectsAndKeys:
                            @"1", @"favTeamID",
                            nil];

    RKRequest *request = [[RKClient sharedClient] post:@"/profile.php" params:params delegate:self];
    [request setUserData:@"selectFavoriteTeam"];
于 2012-09-18T06:12:38.603 に答える