我正在尝试使用React Native的闪电图,我立即遇到了一个错误。
我使用yarn安装@ action/lcjs,然后在我的App.js顶部写…
import { lightningChart } from '@arction/lcjs';
我看到的错误信息是…
Error: Requiring module "node_modules/@arction/lcjs/dist/lcjs.js", which threw an exception: TypeError: Si.atob is not a function. (In 'Si.atob(aV[t[0]][r].toString())', 'Si.atob' is undefined)
Process terminated. Press <enter> to close the window
任何指示将不胜感激!
LightningChart JS不直接兼容React Native。你需要在WebView中加载它。对于React Native兼容的WebView实现,你可以使用像React Native WebView这样的库。在WebView中,可以像在浏览器中一样使用LightningChart。