首页 新闻 会员 周边 捐助

.net core接收vue传递的数据

0
悬赏园豆:5 [待解决问题]

 var json = JSON.stringify(this.user);
                    this.$http.post("../Login/login", json).then((response) => {
                        debugger
                        alert("ok")
                    }, (response) => {
                        debugger
                        alert("false")
                    })在控制器里要接收值怎么写

灬丶的主页 灬丶 | 初学一级 | 园豆:9
提问于:2018-08-15 22:38
< >
分享
所有回答(3)
0

通过[FromBody]特性表示接收参数就可以了

Jeffcky | 园豆:2789 (老鸟四级) | 2018-08-15 23:08

为啥用FromBody就访问页面时就找不到页面了

支持(0) 反对(0) 灬丶 | 园豆:9 (初学一级) | 2018-08-22 19:06
0

    this.$http.post("../Login/login", {clientJson:json}).then((response) => {
                        debugger
                        alert("ok")
                    }, (response) => {
                        debugger
                        alert("false")
                    })

 

这样

public jsonResult GetTest(string clientJson){

 

}

DNLi | 园豆:316 (菜鸟二级) | 2018-08-16 08:28
0

定义一个对应于接收参数的类作为 Action 的参数类型

dudu | 园豆:30778 (高人七级) | 2018-08-16 08:31
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册