我们正在尝试使用PHP编写的API获取一些HTML源代码。 PHP代码使用json_encode
对响应进行编码,然后回应它。我们收到的回复与此类似。
{"status":true,"message":"Form fetched.","html":"
<!DOCTYPE html>\n\n
<html>\n\n
<head>\n\n<\/head>\n\n
<body onload=\"document.form.submit()\">\n\n\t
<div>\n\t\t\t
<img src='https:\/\/www.example.com\/resource\/images\/loader.gif' width='300px' height='300px'\/>\n\t\t\tPlease wait while we redirect you...\n\t<\/div>\n\n\t
<form name='form' method='POST' action='https:\/\/test.test.com\/_payment'>\n\t\t
<input type='hidden' name='key' value='randomFFx'>\n\t\t
<input type='hidden' name='txnid' value='YHOOCH31DG90HeQpc8h7'>\n\t\t
<input type='hidden' name='productinfo' value='Adding to user.'>\n\t\t
<input type='hidden' name='amount' value='100'>\n\t\t
<input type='hidden' name='firstname' value='test'>\n\t\t
<input type='hidden' name='lastname' value='test'>\n\t\t
<input type='hidden' name='email' value='support@example.com'>\n\t\t
<\/form>\n<\/body>\n<\/html>"}
如何在没有\n\t
的情况下获取正确的HTML代码,我可以在webview中显示。目前由于这些原因,表单未自动提交。我们尝试将\n
,\t
,\
替换为,但有更好的方法来检索HTML代码。提前感谢您的所有帮助和建议。