更正一下
报错为:
Unexpected token o in JSON at position 0。
解决方法为
save:function(items){
items=JSON.stringify(items)
window.localStorage.setItem(STORAGE_KEY,items)
}
报错为:
Unexpected token o in JSON at position 0。
解决方法为
save:function(items){
items=JSON.stringify(items)
window.localStorage.setItem(STORAGE_KEY,items)
}
2016-09-23
Store.fetch()中return (.....|| '[]'),[]外不应该加'',否则报错Unexpected token u in JSON at position 0。
2016-09-23
最赞回答 / 程伯斯
你可以直接贴代码,看不完整。数组[] 那里不知道''是否齐全。其他的我不知道,你至少把JSON.parse打错了。const STORAGE_KEY = 'todos-vuejs'export default { fetch: function() { return JSON.parse(window.localStorage.getItem(STORAGE_KEY) || '[]') }, save: function (items) { window.lo...
2016-09-23
老师讲的不错,清晰明了,了解了Vue最基本的数据交互,希望能推出进阶教程,项目目录划分、怎样融入其他插件、后端交互这些。
2016-09-22
已采纳回答 / Juliana_zlj
它有提示你 没有找到babel-plugin-transform-decorator**这个模块 用npm install 模块名 后再运行看能不能解决
2016-09-19