正在看这篇教程: https://www.meteor.com/tutorials/react/components
在 2.4 的 imports/ui/App.jsx 文件里面,有这么一个函数:
getTasks() {
return [
{ _id: 1, text: 'This is task 1' },
{ _id: 2, text: 'This is task 2' },
{ _id: 3, text: 'This is task 3' },
];
}
这个简单函数的作用仅仅只是返回一个数组,于是我就想 [为什么不直接定义一个数组呢] ?像范例这样定义一个函数,再让这个函数返回一个数组,这不是脱裤子放屁吗?你不就想要一个数组吗?于是我就直接在这个函数的上面定义一个 tasksList 数组:
let tasksList = [
{ _id: 1, text: 'This is task 1' },
{ _id: 2, text: 'This is task 2' },
{ _id: 3, text: 'This is task 3' },
];
这么定义之后, Meteor 就报错了(其他代码都没动)。这是为什么呢?我知道我定义的数组下面没有用到,但是没用到也不至于就报错吧,求指点。
Meteor 报错信息如下:
While building for web.brower:
imports/ui/App.jsx:8:6 Unexpected token (8:6)
=> Your application has errors. Waiting for file change.
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.