native-echarts 在安卓上无法显示出来

Posted lude1994

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了native-echarts 在安卓上无法显示出来相关的知识,希望对你有一定的参考价值。

1.native-echarts 的配置是百度echarts

2.模拟器上试了很多次都显示不出来(具体不清楚,我的是这样)

3.真机测试可以显示图表,以下是配置:

  a。将node_modules\native-echarts\src\components\Echarts下的tpl.html复制到android\app\src\main\assets目录下,assets需要自己新建文件夹

  b。在node_modules\native-echarts\src\components\Echarts下的index.js文件进行修改:

    

import React, { Component } from ‘react‘;
import { WebView, View, StyleSheet, Platform } from ‘react-native‘; // 需要添加一个Platform
import renderChart from ‘./renderChart‘;
import echarts from ‘./echarts.min‘;


export default class App extends Component {

constructor(props) {
super(props);
this.setNewOption = this.setNewOption.bind(this);
}


componentWillReceiveProps(nextProps) {
if(nextProps.option !== this.props.option) {
this.refs.chart.reload();
}
}

setNewOption(option) {
this.refs.chart.postMessage(JSON.stringify(option));
}

render() {
return (
<View style={{flex: 1, height: this.props.height || 400,}}>
<WebView
ref="chart"
scrollEnabled = {false}
injectedjavascript = {renderChart(this.props)}
style={{
height: this.props.height || 400,
backgroundColor: this.props.backgroundColor || ‘transparent‘
}}
scalesPageToFit={Platform.OS !== ‘ios‘}
originWhitelist={[‘*‘]}
source={Platform.OS === ‘ios‘ ? require(‘./tpl.html‘) : {uri:‘file:///android_asset/tpl.html‘}} // 这处需要修改
onMessage={event => this.props.onPress ? this.props.onPress(JSON.parse(event.nativeEvent.data)) : null}
/>
</View>
);
}
}

 

以上是关于native-echarts 在安卓上无法显示出来的主要内容,如果未能解决你的问题,请参考以下文章

【安卓开发】在进行调试的过程中,发现在xml中明明有注册的控件却无法在模拟器中显示出来.....

Eclipse 安卓开发layout预览界面无法显示怎么回事,如下图,代码可以看,就是预览界面没有,怎么调出来啊

小程序本地图片文件在安卓机上显示时有时无的坑

关于SVG图片在IOS系统上无法显示的问题

安卓系统手机上百度贴吧图片显示不出来,打开图片就黑屏,只有一个小白点,怎么回事??!!

安卓安装应用程序显示已存在同名文件并且无法覆盖