Я пытаюсь опубликовать некоторые данные на веб-странице ...
[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
равно пусто .
Какой следующий шаг?