使用POST参数打开URL

时间:2012-07-26 13:32:04

标签: batch-file cmd

我正在搜索或打开带有两个POST参数的网址。我现在唯一的选择是编写一个小的exe,它在WebBrowser控件中创建一个表单然后自动点击一个按钮,这很糟糕。有没有更好的方法可以做到这一点?

3 个答案:

答案 0 :(得分:2)

您可以使用以下javascript创建HTML文件:

<script type="text/javascript">
<!-- The function below does a post without requiring a form or the click of a button -->
function postwith (to,p) {
    var myForm = document.createElement("form");
    myForm.method="post" ;
    myForm.action = to ;
    for (var k in p) {
        var myInput = document.createElement("input") ;
        myInput.setAttribute("name", k) ;
        myInput.setAttribute("value", p[k]);
        myForm.appendChild(myInput) ;
    }
    document.body.appendChild(myForm) ;
    myForm.submit() ;
    document.body.removeChild(myForm) ;
}
</script>

示例用法:

    <script type="text/javascript">
    function delconfirm(id){
        if(confirm('Are you sure?'))
        {
            postwith('http://somesite.com/webpagetorecievepost.php',{KEY:VALUE,KEY:'STRING VALUE'});
        }
    }
   </script>

您可以根据需要添加任意数量的 KEY:VALUE

获得此html文件后,您可以在Internet Explorer中修改并打开它。

答案 1 :(得分:0)

有些网络浏览器自动化工具可以驱动IE,例如Selenium。 Selenium是可编写脚本的,并且具有主要浏览器的驱动程序。我只用过selenium这种东西,由java代码驱动;有alternatives

还有Windows GUI自动化工具,例如AutoIT,可以打开给定的程序并操作GUI元素。

答案 2 :(得分:0)

我有这个工作,所以你可以用一个查询字符串打开一个标准的.html文件,将参数转发到一个URL。

function postFromQueryString(url) {
    // grab params from query string into KVP array
    var postParams = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for(var i = 0; i < hashes.length; i++) {
        hash = hashes[i].split('=');
        postParams.push(hash[0]);
        postParams[hash[0]] = hash[1];
    }
    if(postParams.length === 0) {
        alert('No parameter was passed');
        window.close();
        return;
    }
    // create a form
    var formToPost = document.createElement("form");
    formToPost.method="post";
    formToPost.action = url;
    // add params to form
    for (var k in postParams) {
        var postInput = document.createElement("input");
        postInput.setAttribute("name", k);
        postInput.setAttribute("value", postParams[k]);
        formToPost.appendChild(postInput);
    }
    document.body.appendChild(formToPost);
    formToPost.submit();
    document.body.removeChild(formToPost);
}

将其命名为onLoad:

(function () {
    // build dynamic form and post
    postFromQueryString('http://yourUrlToPostTo.aspx');
})();