世博会-升级到SDK 33后,WebView无法正确呈现(fusioncharts html)

时间:2019-10-02 12:10:37

标签: react-native webview sdk expo fusioncharts

SDK版本:33

平台(Android / iOS /网络/全部):Android

我的应用程序使用Fusioncharts库显示图表。在sdk 32上一切正常,图表以html文件为基础加载,并显示在Web视图上。

Asset

enter image description here

Webview

enter image description here

SDK 32(工作)

Sdk 32 enter image description here

升级到SDK 33后(不起作用,显示html内容)

Sdk 33 enter image description here

有人知道发生了什么吗?世博会资产变了吗? Webview?

此致

1 个答案:

答案 0 :(得分:0)

尝试将传递给WebView的source方法的值更改为{html: this.props.libraryPath}

结论,它应该像这样:

<WebView
    // ... other methods

    source={{ html: this.props.libraryPath }}

    // ... other methods
/>

希望这会有所帮助!