一个很简单的请求this.$http.jsonp(Util.url,{
marked : "helpList",
jsonStr:{
aaa :123
}
}).then((response) => {
}, (response) => {
});但是用谷歌的开发者工具查看,却是这样的请求里面的参数都没有了。请问有谁遇到过这种情况么。
1 回答
富国沪深
TA贡献1790条经验 获得超9个赞
marked
和jsonStr
是什么东西?不是应该是params
么?
this.$http.jsonp(Util.url,{ params:{ aaa :123 } }).then((response) => { }, (response) => { });
添加回答
举报
0/150
提交
取消