解决vue接⼝数据赋值给data没有反应的问题
问题:
就是我在接⼝赋值给了data的变量,然后组件的效果没有出来(我的是旋转效果)
代码如下:
data() {
return {
slides: []
}
},
mounted() {
},
淘宝网团购methods: {
request() {
this.$http.post('xxxxxxxxxxxx', {},
福原爱说中文(res) => {
if (is.object(res)) {
if (res.status === 'succ') {
this.slides = res.data.useddevice_list
console.log(this.slides)
} else {
console.log(res)
倒库技巧2013口诀
}
} else {
this.$toast.show('加载失败')
}
}, (data) => {
于文凤年轻照片
this.$toast.show('请求数据失败')
})
}
}
打印出来也是有数据的(但是组件那边没有效果)等功能
哪些好看的三级
解决⽅法:
因为他是⼀个[], ⼀开始加载的时候你去获取数据肯定是undefined, vue官⽅说了最好提前把所有属性声明好。不管有没有数据也给他⼀个null
data() {
return {
slides: [null]
}
},
mounted() {
},
methods: {
request() {
this.$http.post('xxxxxxxxx', {},
(res) => {
if (is.object(res)) {
if (res.status === 'succ') {
this.slides = res.data.useddevice_list
console.log(this.slides)
} else {
console.log(res)
}
} else {
this.$toast.show('加载失败')
}
}, (data) => {
this.$toast.show('请求数据失败')
})
}
以上这篇解决vue接⼝数据赋值给data没有反应的问题就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
苏志燮现任女友