在vue中发送get请求正常,发送post请求有问题,求指教
在HelloWorld.vue中发送请求
在main.js中配置请求
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import axios from 'axios'
Vue.prototype.$http = axios
axios.defaults.baseURL = 'https://test.galayun.com/smallprogapi/test'
Vue.config.productionTip = false
new Vue({
router,
render: (h) => h(App)
}).$mount('#app')
在浏览器中的报错信息
接口 地址 以及参数 地址: https://test.galayun.com/smallprogapi/test/XiaolaiLogin
参数:userName: 'xiaolai',
pwd: '123456'