合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
#### HTTP注意事项 POST请求接口传参时 参数类型 可使用 $http.adornData 来改变 函数定义在http.js中 json / form ![](https://img.kancloud.cn/68/c1/68c1900ef2896258d76187ea8f8cab05_702x180.jpg) * [ ] 以下为 get/post 两种请求 * GET请求 ``` this.$http({ url:"/doctor/getYZM", method:"get", params: { 'phone':15673595013, } }).then(({ data })  => { console.log(data) }).catch(err => { }) ``` * POST请求 ``` this.$http({ url:"/staff/findAllStaff", method:"POST", data:this.$http.adornData({ }, true, 'json'), }).then(({data}) => { console.log(data) }).catch(err => { console.log(err) }) ```