作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 ASP.NET
我想从 JS 发送一些数据到我的 Controller (在数据库中设置这个日期)。我尝试过使用“fetch”,但对象为空。
MyController 名称:HomeController,
我的操作:ResultPage,
我要发送的数据:testResult
P.S 我使用 System.Web.Http 中的 [FromBody];
console.log(testResult); // have some data
fetch('/Home/ResultPage',
{
method: 'post',
body: JSON.stringify(testResult)
})
[System.Web.Mvc.HttpPost]
public void ResultPage([FromBody] TestResult testResult)
{
// testResult is null
//some code here
}
最佳答案
var data = {
name: 'John'
};
var response = fetch('Home/ResultPage', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=utf-8'
},
body: JSON.stringify(data)
});
[HttpPost]
public void ResultPage([FromBody]Parameter parameter)
{
//code here
}
public class Parameter
{
public string name { get; set; }
}
关于javascript - 如何从 JS 将参数发送到我的 Controller ASP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58159678/
我是一名优秀的程序员,十分优秀!