Androidプロジェクトをreact react nativeで実行すると、このエラーが発生します。
これは、reactネイティブバージョン "react": "^ 16.3.1"、 "react-native": "^ 0.57.1"の新規インストールです。
オプションの連鎖のエラーが発生します。反応ネイティブでオプションのチェーンを有効にする方法を誰かが私を助けてくれますか?.
Loading dependency graph, done.
BUNDLE [Android, dev] ....../index.js ▓▓▓▓▓▓▓▓▓▓░░░░░░ 64.3% (667/832)::ffff:127.0.0.1 - - [02/Oct/2018:04:30:46 +0000] "GET /index.delta?platform=Android&dev=true&minify=false HTTP/1.1" 500 - "-" "okhttp/3.10.0"
error: bundling failed: SyntaxError: C:\ReactNative\mrn\node_modules\react-native\Libraries\Components\Switch\Switch.js: Support for the experimental syntax 'optionalChaining' isn't currently enabled (103:41):
101 | // Support deprecated color props.
102 | let _thumbColor = thumbColor;
103 | let _trackColorForFalse = trackColor?.false;
| ^
104 | let _trackColorForTrue = trackColor?.true;
105 |
106 | // TODO: Remove support for these props after a couple releases.
Add @babel/plugin-proposal-optional-chaining (https://git.io/vb4Sk) to the 'plugins' section of your Babel config to enable transformation.
at _class.raise (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:3939:15)
at _class.expectPlugin (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5253:18)
at _class.parseSubscript (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5959:12)
at _class.parseSubscript (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:2716:51)
at _class.parseSubscripts (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5944:19)
at _class.parseSubscripts (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:2669:52)
at _class.parseExprSubscripts (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5934:17)
at _class.parseMaybeUnary (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5903:21)
at _class.parseExprOps (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5812:21)
at _class.parseMaybeConditional (C:\ReactNative\mrn\node_modules@babel\parser\lib\index.js:5784:21)
BUNDLE [Android, dev] ....../index.js ▓▓▓▓▓▓▓▓▓▓▓▓░░░░ 77.5% (752/854), failed.
ルートに.babelrcファイルを追加して修正しました
{
"plugins": [
"@babel/plugin-proposal-optional-chaining"
],
"presets": [
"react-native"
]
}
.babelrcファイルの変更後にメトロを再起動します
エラーは、@ babel/plugin-proposal-optional-chainingを追加することを示しています
インストールしてみてください this
npm install --save-dev @babel/plugin-proposal-optional-chaining
アプリケーションを古いネイティブバージョンから新しいバージョンにアップグレードした後も、この問題に直面しました。 devDependenciesにいくつかのバベルライブラリが必要です。