js 数组追加对象出错

this.$store.state.playList.unshift({songname:this.$store.state.chosenList.songname,url:this.$store.state.songurl})

clipboard.png

数据是没问题的 单独push 不是对象没错啊

this.$store.state.playList.unshift(this.$store.state.chosenList.songname)
               
                console.log( this.$store.state.playList)

clipboard.png

但是这样追加进数组出错 为什么

阅读 2.5k
2 个回答

先确保this.$store.state.playList是一个数组对象,可以先console.log()出来看看
据我所知,this.$store.state.xxx,这里xxx应该是你export的一个state中的区块空间命名,一般是一个对象,在这个对象中,再去定义内部属性数组对象进行操作

你把firefox换成chrome应该就能看到数据了.
我猜测是firefox问题.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题