语法'nullishCoalescingOperator'当前未启用

时间:2018-12-27 11:19:21

标签: ios react-native syntax-error react-native-ios

当我尝试在ios-simulator上构建我的应用程序时,它说:

捆绑失败:SyntaxError:/Users/MyName/MyApp/node_modules/react-native/node_modules/react-native/Libraries/Components/Switch/Switch.js:不支持实验性语法nullishCoalescingOperator当前启用(167:52):

 165 |         {...props}
  166 |         {...platformProps}
> 167 |         accessibilityRole={props.accessibilityRole ?? 'button'}
      |                                                    ^
  168 |         onChange={this._handleChange}
  169 |         onResponderTerminationRequest={returnsFalse}
  170 |         onStartShouldSetResponder={returnsTrue}

Add @babel/plugin-proposal-nullish-coalescing-operator (https://git.io/vb4Se) to the 'plugins' section of your Babel config to enable transformation.

我照了说的做,但是没用... 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:20)

我认为通过将.babelrc更改为

解决了
{
  "presets": ["module:metro-react-native-babel-preset"]
}

此更改是由于升级我的本机版本

引起的