Post方法创建

Posted 珈子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Post方法创建相关的知识,希望对你有一定的参考价值。

        function post(URL, PARAMS) {          
            var temp = document.createElement("form");          
            temp.action = URL;          
            temp.method = "post";          
            temp.style.display = "none";          
            for (var x in PARAMS) {          
                var opt = document.createElement("textarea");          
                opt.name = x;          
                opt.value = PARAMS[x];                 
                temp.appendChild(opt);          
            }          
            document.body.appendChild(temp);          
            temp.submit();          
            return temp;          
        }

 

  post(‘#(ctx)/Report/fmSave‘,{link:JSON.stringify(link)});

 

以上是关于Post方法创建的主要内容,如果未能解决你的问题,请参考以下文章

Post方法创建

Swift 3 - 创建简单请求方法 POST (URLRequestConvertible) 的问题

Spring Boot 模拟创建的 POST 响应

php 创建 zip 文件(来自 post 附件 wordpress)

创建表单 $post 并在提交时提交用户 ID

Http之POST PUT