'babelHelpers.taggedTemplateLiteral' 在使用标记模板字符串时在 React Native 中未定义

'babelHelpers.taggedTemplateLiteral' is undefined in react native when using tagged template strings

我正在尝试像这样在 React Native 应用程序(rn 版本 0.16)中使用标记的模板字符串

let i18n = function(){
       return 'should be fun';
   };
console.log(i18n`not fun`);

我遇到异常 - 'babelHelpers.taggedTemplateLiteral' 未定义;

如果我只使用模板字符串,例如:

console.log(`Fun`);

正在运行。

从 0.16 开始,rn 迁移到 babel 6,可能它不仅是 rn 特定的。 我有检查打包程序和 "babel-plugin-transform-es2015-template-literals" 包括在内。

有什么想法吗?

我更新到RN 18解决了。