VueJs中的反向数组问题

时间:2017-01-24 20:01:44

标签: vuejs2 vue.js

我通过facebook graph api获得对话消息,我需要撤消数据。

在计算的reverseChat函数中,当我尝试显示this.chat.dataJSON.parse(this.chat).data.reverse()错误时,我尝试返回this.chat.data.reverse()但无反向()。

控制台显示错误

[Vue warn]: Error when rendering anonymous component at C:\Users\PEM\Desktop\src\components\Chat.vue:
SyntaxError: Unexpected end of JSON input
    at json.parse (<anonymous>)
    at Proxy.render (eval at <anonymous> (app.js:2430), <anonymous>:123:85)
    at VueComponent.Vue._render (ever at <anonymous> (app.js:606), <anonymous>:2464:21)
    ...

jsfiddle中的示例代码

https://jsfiddle.net/pqrf2vu4/

1 个答案:

答案 0 :(得分:0)

JSON.parse(this.chat).data.reverse()

的工作原理。见Jsfiddle