示例代码:
// POST api/values [HttpPost] public void Post([FromBody] MyModel value) { // do something with value }
在Vue.js中使用Axios发送POST请求:
axios.post('/api/values', { // data object goes here }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });