this.$axios.post("/godownGntry", postData)
.then((res) => {
console.log(res);
});
前端发送post或者get请求,传入一个postData的json对象
服务端接收不到这个参数
Dim e As RequestEventArgs = Args(0)
Dim test1 As String = e.PostValues("datas")
MessageBox.Show(test1)
mes窗口显示的是空值
json数据使用使用e.plantext接收,表单数据才是使用e.PostValues接收