这是代码
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://page/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "frashnum=&action=login&Frm_Logintoken=4&Username=admin&Password=admin");
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
?>
我使用Curl-to-PHP
通过将此命令转换为php
curl "http://page/" --data "frashnum=&action=login&Frm_Logintoken=24&Username=admin&Password=admin"
并且我需要首先使用此XMLHttpRequest请求和js代码获取登录令牌的值
<!DOCTYPE html>
<html>
<body>
<script>
httpRequest = new XMLHttpRequest()
httpRequest.onreadystatechange = function() {
if (httpRequest.readyState == XMLHttpRequest.DONE) {
let str =(httpRequest.responseText);
alert(str)
let pattern =/\bgetObj\("Frm_Logintoken"\)\.value = "([^"]+)";/;
console.log(str.match(pattern)[1]);
}
}
httpRequest.open('GET', 'http://page/', true);
httpRequest.send(null);
</script>
</body>
</html>
所以我需要用console.log(str.match(pattern)1)替换Frm_Logintoken值。 结果
我尝试过的失败
<!DOCTYPE html>
<html>
<body>
<script>
var xhr = new XMLHttpRequest();
xhr.open('post','http://page/', true);
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.onload = function () {
// do something to response
console.log(this.responseText);
};
xhr.send('document.getElementById("Frm_Username").value = "test"');
xhr.send('document.getElementById("Frm_Password").value = "test"');
xhr.send('function dosubmit()');
</script>
</body>
</html>
它给我这个错误
未捕获的DOMException:无法在“ XMLHttpRequest”上执行“发送”: 对象的状态必须为OPENED。
我不知道如何定义匹配项console.log(str.match(pattern)[1]);
结果超出了第一个js代码中的功能
我不确定我是否需要像PHP代码一样的登录令牌,或者我可以只插入数据,然后使用我们要发送的页面代码中的函数function dosubmit()
数据到!
答案 0 :(得分:0)
为了在JavaScript中发出HTTP POST请求,您可以使用类似以下内容(如此处Send POST data using XMLHttpRequest所示)
var http = new XMLHttpRequest();
var url = 'http://page/';
var params = 'frashnum=&action=login&Frm_Logintoken=4&Username=admin&Password=admin';
http.open('POST', url, true);
//Send the proper header information along with the request
http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
http.send(params);