在 UIWebView 中发布两个文本字段

发布于 2024-11-05 21:48:33 字数 662 浏览 0 评论 0原文

我想在 UIWebView 中加载的页面中填充两个文本字段。我一直忙于 NSMutableRequests。 我的代码:

// webView is an object of UIWebView

// This is my ViewDidLoad Function

NSString *cijferString = @"leerling.degoudsewaarden.nl";
NSURL *cijferURL = [NSURL URLWithString:cijferString];
NSMutableURLRequest *request = [NSMutableURLReuqest requestWithURL:cijferURL];

NSString *body = [NSString stringWithFormat:@"wu_loginname=%@&wu_password=%@", @"username", @"password"];

[request setHTTPMethod:@"POST"];
[request setHTTPBody: [body dataUsingEncoding:NSUTF8StringEncoding];

[webView loadRequest:request];

我想要的只是将我的用户名和密码提交到网页。它将自动加载下一页。

任何帮助表示赞赏!

I want to fill two textfields in a page I loaded in UIWebView. I have been busy with NSMutableRequests.
My code:

// webView is an object of UIWebView

// This is my ViewDidLoad Function

NSString *cijferString = @"leerling.degoudsewaarden.nl";
NSURL *cijferURL = [NSURL URLWithString:cijferString];
NSMutableURLRequest *request = [NSMutableURLReuqest requestWithURL:cijferURL];

NSString *body = [NSString stringWithFormat:@"wu_loginname=%@&wu_password=%@", @"username", @"password"];

[request setHTTPMethod:@"POST"];
[request setHTTPBody: [body dataUsingEncoding:NSUTF8StringEncoding];

[webView loadRequest:request];

All I want is submit my username and password to the webpage. It will automatically load the next page.

Any help is appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走走停停 2024-11-12 21:48:33

研究并使用 ASIHTTPRequest 框架,它使发送 POST 请求变得非常容易,并且通常是执行 RESTful HTTP 内容的绝佳框架。

祝你好运!

Investigate and use the ASIHTTPRequest framework, it makes sending POST requests very easy and in general is a great framework for doing RESTful HTTP stuff.

Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文