当前位置:   article > 正文

关于uniapp打包成app echart数据不显示的 renderjs问题_uni-app 打包app e-charts不显示

uni-app 打包app e-charts不显示

renderjs是一个运行在视图层的js。它比WXS更加强大。它只支持app-vue和h5。

renderjs的主要作用有2个:

1、大幅降低逻辑层和视图层的通讯损耗,提供高性能视图交互能力

2、在视图层操作dom,运行for web的js库

就是vue本身不支持直接通过原生JS操作DOM,于是在uniapp里,可以通过renderjs来实现逻辑层(vue的template或者说虚拟dom)与视图层(原生dom)之间的通讯,或者说操作。

注意点:
1、目前仅支持内联使用。
2、不要直接引用大型类库,推荐通过动态创建 script 方式引用。
3、可以使用 vue 组件的生命周期不可以使用 App、Page 的生命周期
4、视图层和逻辑层通讯方式与 WXS 一致,另外可以通过 this.$ownerInstance获取当前组件的 ComponentDescriptor 实例。
5、观测更新的数据在视图层可以直接访问到。
6、APP 端视图层的页面引用资源的路径相对于根目录计算,例如:./static/test.js。
7、APP 端可以使用 dom、bom API,不可直接访问逻辑层数据,不可以使用 uni 相关接口(如:uni.request)
8、H5 端逻辑层和视图层实际运行在同一个环境中,相当于使用 mixin 方式,可以直接访问逻辑层数据。

实现:本demo利用的是 klinecharts (k线图的echart)

父组件
<template>
	<view class="chart" style="overflow: hidden;">
		<newchart ref="newchart" :detail="detail"></newchart>
	</view>
</template>
xxxx 逻辑代码



子组件
<template>
	<view 
	:prop="historyList" :change:prop="klinecharts.updateEcharts" 
	:datas="newdatas" :change:datas="klinecharts.updatenewdatas" 
	
	ref="k-line-chart" id="k-line-chart" class="kling cb"></view>
</template>
<script>
	import {
		mapState, mapMutations
	} from 'vuex'
	export default {
		data() {
			return {
				domChart:null,
				historyList:[],
				newdatas:{},
			}
		},
		props:{
			detail:{
				
			}
		},
		onReady() {
			this.$ws.init()
		},
		computed: {
			...mapState('chart', ['categories', 'series']),
			seriesData() {
				return this.series
		
			}
		},
		watch:{
			detail(newV){
				this.$nextTick(() => {
					this.historyList = newV
				})
			},
			seriesData(newValue, oldValue) {
				this.newdatas = newValue
			}
		},
		methods:{

		}
	}
</script>
<script module="klinecharts" lang="renderjs">
	import {init} from 'klinecharts'
	import klinConfig from '@/utils/klinConfig.js' // 样式处理
	export default {
		data() {
			return {
				domChart:null,
				historyList:[]
			}
		},
		mounted() {
			const chart = init(document.getElementById('k-line-chart'))
			chart.setStyleOptions(klinConfig)
			chart.overrideTechnicalIndicator({
				name: 'MA',
				calcParams: [5, 10, 30]
			})
			
			chart.createTechnicalIndicator('MA', false, {
				id: 'candle_pane'
			})
			chart.setPriceVolumePrecision(5, 5)
			this.domChart = chart		
		},
		
		methods: {
			 updateEcharts(newValue, oldValue, ownerInstance, instance) {
				let _this = this
				this.$nextTick(() => {
					_this.domChart.applyNewData(newValue, 0);
				}) 
			},
			updatenewdatas(newValue, oldValue, ownerInstance, instance){
				let _this = this
				this.$nextTick(() => {
					//更新参数
					this.domChart.updateData({
						timestamp: Number(newValue.timestamp),
						open: parseFloat(newValue.open),
						high: parseFloat(newValue.high),
						low: parseFloat(newValue.low),
						close: parseFloat(newValue.close)
					})
					
					
				}) 
			}
		}
	}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/124002
推荐阅读
相关标签
  

闽ICP备14008679号