自动填写并提交 HTML 表单并在 UIWebView iOS 中查看
我试图在 iPhone 和 iPad 上自动填写并提交 HTML 表单,然后在 UIWebView 中查看结果页面。
示例:有一个网站可以为我的大学的膳食计划充值,它要求您先输入您的学号,按提交,输入您的密码,按提交,然后它会显示您的余额。
我正在尝试制作一个应用程序,让您在其中保存信息,按“GO”,然后在后台它将填写保存的学号,点击“提交”,等待加载结果页面,然后输入密码,按提交,然后最终显示带有余额的结果页面。
我已多次尝试提交表单,但无法让它们显示在 UIWebView 中。
有人有任何想法或解决方案吗?
感谢所有的帮助!抱歉,如果这是一个愚蠢的问题。
I'm trying to automatically fill and submit an HTML form on the iPhone and iPad, but then view the resulting page in a UIWebView.
Example: There's a website to add money to a meal plan for my university, and it requires you to put in your student number first, press submit, put in your password, press submit, then it reveals your balance after that.
I am trying to make an app that lets you save your information in it, press GO and then in the background it will fill in the saved student number, hit submit, wait for the resulting page to be loaded, then input the password, press submit, then finally display the resulting page with the balance.
I've tried multiple times to submit forms, but can't get them to display in a UIWebView after.
Does anyone have any ideas or solutions?
Appreciate all the help! Sorry if it's a silly question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 JavaScript 来完成。使用 UIWebView 的
-stringByEvaluatingJavaScriptFromString:
方法输入文本并单击按钮。You can do it with JavaScript. Use the
-stringByEvaluatingJavaScriptFromString:
method of UIWebView to enter the text and click the button.对于那些需要代码的人,我希望这 3 种方法可以有所帮助:
此方法将填写用户名字段:
此方法将填写密码字段:
提交表单:
For those who need the code I hope this 3 methods can help :
This method will fill the username field:
This one will fill the password field:
To submit your forms :