actions: {
changeName(store) {
axios.get('https://www.fastmock.site/mock/ae8e9031947a302fed5f92425995aa19/jd/api/user/register').then((res) => {
console.log(res)
})
store.commit('changeName')
}
},
页面代码如上,接口地址是从源码里面复制的。请求后返回的结果如下:
code: "0002", desc: "没有匹配到接口或者该接口不支持 GET 类型的请求", data: null}
code: "0002"
data: null
desc: "没有匹配到接口或者该接口不支持 GET 类型的请求"
视频里面是用的get请求呀