我正在努力将一些数据发布到网页上......
[HttpPost("{id:int}/stuff")]
public IActionResult Add([FromBody] viewModel viewModel, [FromRoute] int id)
取电话......
fetch("api/" + id + "/stuff", {
headers: {
'Accept': 'application/json, text/plain, */*',
'Content-Type': 'application/json'
},
credentials: "same-origin",
method: "POST",
data: JSON.stringify({ text: text })
})
查看模型
public class ViewModel
{
[JsonProperty(PropertyName = "t")]
public string Text { get; set; }
}
Id
是正确的,但viewModel
null 。
下一步是什么?