前端页面开发怎么实现post请求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端页面开发怎么实现post请求相关的知识,希望对你有一定的参考价值。
网上找来的资料,做下整理//模拟表单post提交,且打开新页面跳转
function post(URL, PARAMS)
var temp_form = document.createElement("form");
temp_form .action = URL;
temp_form .target = "_blank";
temp_form .method = "post";
temp_form .style.display = "none";
for (var x in PARAMS)
var opt = document.createElement("textarea");
opt.name = x;
opt.value = PARAMS[x];
temp_form .appendChild(opt);
document.body.appendChild(temp_form);
temp_form .submit();
// 使用方法url表示请求地址,后面传参类似ajax
// post('url',id:id,name:name); 参考技术A
使用 javascript 框架或 Ajax 库。
比如使用 jQuery 发送 POST 请求:
$.ajax('url' : '',
'type': 'post'
);本回答被提问者和网友采纳 参考技术B html 的from 表单 和js 的 ajax 参考技术C 看你这边实际需要,ajax可实现post请求。
以上是关于前端页面开发怎么实现post请求的主要内容,如果未能解决你的问题,请参考以下文章