在./node_modules/react-navigation/src/views/TabView/TabView.js
Module parse failed: Unexpected token (10:22)
You may need an appropriate loader to handle this file type.
|
| class TabView extends React.PureComponent {
| static defaultProps = {
| lazy: true,
| removedClippedSubviews: true,
项目中,我在加载使用ES6 / ES7语言功能的npm模块时遇到问题。
事实上,我发布了一个类似的问题,但在听说发布的npm模块不应该使用 ES6 / ES7语言功能后删除了它,所以问题在于我使用的模块。但现在我遇到了主流模块node_modules
的问题。例如,在此文件中,您会看到下面给出错误的类属性:https://github.com/react-navigation/react-navigation/blob/v1.5.8/src/views/TabView/TabView.js
这是我得到的错误:
无法编译
import csv
import collections
with open ('test.csv','rb') as f:
reader = csv.reader(f)
my_list = list(reader)
#print my_list[1000]
counter = collections.Counter(my_list)
print counter
使用新语言功能处理*ptr, *(ptr+1), ...
的最佳方式是什么?