var json = JSON.stringify(this.user);
this.$http.post("../Login/login", json).then((response) => {
debugger
alert("ok")
}, (response) => {
debugger
alert("false")
})在控制器里要接收值怎么写
通过[FromBody]特性表示接收参数就可以了
为啥用FromBody就访问页面时就找不到页面了
this.$http.post("../Login/login", {clientJson:json}).then((response) => {
debugger
alert("ok")
}, (response) => {
debugger
alert("false")
})
这样
public jsonResult GetTest(string clientJson){
}
定义一个对应于接收参数的类作为 Action 的参数类型