如何在调用url时在HTTP POST请求中发送数据?

时间:2013-09-18 07:36:30

标签: javascript html http

我写了一个简单的jsp页面,我在其中一个部门内部加载了一个外部网站。

以下是代码:

<html>
<head>
<script src="../common/jquery-1.6.2.min.js"></script>
<script>
  $(document).ready(function(){
       $("#menu").html('<object data="www.someurl.com">').appendTo('body');;
   });

</script>
</head>

<body>
<div id="menu" style="position:relative; bottom: 0; overflow:hidden;">
</div>
</body>

</html>

基本上我正在做的是,我正在设置一个在object标签内有一个src URL的HTML内容。 这很成功,我可以在我的部门内加载网址。

当我想使用HTTP POST方法发送一些数据(可能是单个变量)时出现问题。

有没有办法使用HTTP POST调用相同的URL?

注意:由于原始政策相同,我不能使用Jquery POST。

3 个答案:

答案 0 :(得分:0)

看看Jquery帖子功能:http://api.jquery.com/jQuery.post/

此外,如果您想要发送一些数据以及网址,您也可以使用它来获取:

www.someurl.com?dataAttr=someValue&dataOtherAttr=someOtherDataValue

这将是具有以下数据的帖子的GET等价物:

{ 
  "dataAttr": "someValue",
  "dataOtherAttr": "someOtherDataValue"
}

这是一个纯粹的js,它将发布到服务器。该脚本生成一个不可见的iframe,并使用指定的参数调用指定的服务器。服务器必须支持跨域策略。如果你不能让服务器支持CORS,那你就不走运了:

    /**
     * 
     * Makes a post to the specified url with the specified param - keyval
     */
    makePost  = function makePost(url, params){
      var iframeId = 'iframeid';
        var addParamsToForm = function (form, params){
            var addParamToForm = function(form, paramName, paramValue){
                var input = document.createElement('input');
                input.hidden = 'hidden';
                input.name = paramName;
                input.value = paramValue;
                form.appendChild(input);
            }
            for ( var prop in params ){
                if ( params.hasOwnProperty(prop) ){
                    if ( params[prop] instanceof Array ){
                        for ( var i = 0; i < params[prop].length; i ++ ){
                            addParamToForm(form, prop, params[prop][i]);
                        }
                    } else {
                        addParamToForm(form, prop, params[prop]);
                    }
                }
            }
        };
        var iframe = document.getElementById(iframeId);
        if ( iframe === null ){
            iframe = document.createElement('iframe');
            iframe.name = 'iframeName';
            iframe.id = iframeId;
            iframe.setAttribute("style", "width: 0; height: 0; border: none; display: none;");
        }
        var form = document.createElement('form');
        form.action = url;
        form.method = 'POST';
        form.target = iframe.name;

        addParamsToForm(form, params);

        iframe.appendChild(form);
        document.getElementsByTagName('body')[0].appendChild(iframe);
        form.submit();
    }

示例用法:

makePost('yourserver', {'someAttr':'someAttrValue', 'someOtherAttr': 'someOtherAttrValue'});

或jquery变体:

$.ajax({
    type: 'POST',
    url: 'yourserver',
    crossDomain: true,
    data: {'someAttr':'someAttrValue', 'someOtherAttr': 'someOtherAttrValue'},
    dataType: 'json',
    success: function(responseData, textStatus, jqXHR) {
        var value = responseData.someKey;
    },
    error: function (responseData, textStatus, errorThrown) {
        alert('POST failed.');
    }
});

有关如何配置服务器以支持CORS的提示:

http://enable-cors.org/server.html

看一下这个:

How do I send a cross-domain POST request via JavaScript?

答案 1 :(得分:0)

尝试在Iframe中加载外部链接或网站,然后尝试。

 <div>
   <iframe id="" name="" src="your external link" ></iframe>
 </div>

答案 2 :(得分:0)

我不知道你是否使用php,因为没有php标签,但你可以在php中使用Http Request类发布数据,并且它是安全的! 这是一个链接:http://php.net/manual/en/class.httprequest.php