发送post和get请求的参数key值有区别
//get发送参数
this.$http.get('http://xxx', {
params:{ // params为固定的对象
userName:xxx,
password:xxx
}
});
//post发送参数
this.$http.post('http://xxx', {
key:xxx // key 为任意写的参数key值
});
//get发送参数
this.$http.get('http://xxx', {
params:{ // params为固定的对象
userName:xxx,
password:xxx
}
});
//post发送参数
this.$http.post('http://xxx', {
key:xxx // key 为任意写的参数key值
});