为什么用axios,请求到的res.data 是字符串呢,导致res.data.ret 等内容都是undefined
来源:7-10 Vue项目首页 - 首页父子组组件间传值
123456_0595
2018-08-24
getHomeInfoSucc (res) {
res = res.data
console.log(typeof(res)) // string
console.log(res.ret) // undefined
if (res.ret && res.data) {
const data = res.data
this.city = data.city
}
}
写回答
2回答
-
Dell
2018-12-02
你的json里面肯定多了逗号一类的字符串了,把内容删了,一点点加回来,看看哪里的问题
00 -
Dell
2018-08-25
是不是json格式有问题
062020-03-02
相似问题