求助:ajax传参,CGI怎么接数据?
前台有个文本框的数据,想通过send传参的方式传给后台,在数据库内保存起来。send传参需要注意什么?后台的cgi该怎么接这个数据?
------解决方案--------------------send中发送数据是post提交,要设置content-type为application/x-www-form-urlencoded就会自动生成键值对。。cgi用post方法获取提交的数据就行了,和普通表单一样
xhr.open("post","xxxxx.cgi",true);
xhr.setRequestHeader("content-type","application/x-www-form-urlencoded");
xhr.send("xxxx=xxxx");