0

我正在尝试在此之后的 react-native 应用程序中实现 highcharts 包装器

https://www.highcharts.com/blog/post/creating-mobile-charts-with-highcharts-react-native/

在设备上使用 expo start 运行应用程序时,它返回了以下错误

警告:%s:错误边界应实现 getDerivedStateFromError()。在该方法中,返回状态更新以显示错误消息或回退 UI。 RootErrorBoundary ReferenceError: Can't find variable: modules * App.js:21:8 in render

App.js 的第 21 行有 highcharts 容器 HighchartsReactNative

任何线索都会非常有帮助

4

1 回答 1

0

您应该将模块声明为数组。

const modules = [
    'highcharts-more',
    'solid-gauge'
];

您可以在我们的文档 (Readme.md) 中找到更多信息:- https://github.com/highcharts/highcharts-react-native

于 2019-09-27T10:07:08.727 回答