您好我试图在我的控制器中发布我的表单,但我的模型始终为null。我是vuejs和axios的新手。
我在我的cosole中返回这些数据
{EMPID “:0,” 名字 “:” ExampleF”, “姓”: “ExampleL”, “地址”: “Addressexample”}
我的vueJS,我正在使用v-model填充数据
new Vue({
el: '#app',
data: {
form: {
empID: 0,
firstname: '',
lastname: '',
address: ''
}
},
methods: {
SumbitForm: function () {
console.log(JSON.stringify(this.form))
axios.post('/Home/Save', JSON.stringify(this.form)
).then(function (response) {
alert(data);
}).catch(function (error) {
console.log(error);
});
}
}
});
问题解决了。我删除了JSON.stringfy():)并且它可以工作。