首页 > 代码库 > 不传参数名获取参数(前、后台代码)
不传参数名获取参数(前、后台代码)
js
var xhr = new XMLHttpRequest(); xhr.open("post", "/Home/NoParamTest", true); //两种协议都可以 xhr.setRequestHeader("Content-Type", "application/json"); //xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.send(JSON.stringify({ a: 1, b: 2, c: 3 }));
c#后台
public void NoParamTest() { using (StreamReader sr = new StreamReader(Request.InputStream)) {
//data就是前面传过来的数据 string data =http://www.mamicode.com/ sr.ReadLine(); } }
不传参数名获取参数(前、后台代码)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。