当前位置:网站首页>uni-app之renderjs
uni-app之renderjs
2022-08-04 15:19:00 【qq_45689385】
前言
由于app中要使用地图,以前一直用的都是高德地图,在app中是不能操作dom,所以直接用是不可能的,虽然uni-app有地图组件map,但是用着也一直不顺手,最终发现了renderjs,官网提出,在app-vue环境下,视图层由webview渲染,而renderjs
运行在视图层,自然可以操作dom和window。
使用
:prop 传值 :change:prop 监听prop改变
调用改变的方法内有四个参数
newValue:跟新后的数据
oldValue:原先的数据
ownerInstance:通过该函数可以调用内部函数,可以传输数据
instance:当前service层实例
通过 this.$ownerInstance.$vm 获取当前组件的 ComponentDescriptor 实例
<template>
<view class="content">
<!-- #ifdef APP-PLUS || H5 -->
<view @click="echarts.onClick" :prop="option" :change:prop="echarts.updateEcharts" id="echarts" class="echarts"></view>
<button @click="changeOption">更新数据</button>
<!-- #endif -->
<!-- #ifndef APP-PLUS || H5 -->
<view>非 APP、H5 环境不支持</view>
<!-- #endif -->
</view>
</template>
<script>
export default {
data() {
return {
option: {
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
legend: {
data: ['销量']
},
xAxis: {
data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
}
}
},
onLoad() {
},
methods: {
changeOption() {
const data = this.option.series[0].data
// 随机更新示例数据
data.forEach((item, index) => {
data.splice(index, 1, Math.random() * 40)
})
},
onViewClick(options) {
console.log(options)
}
}
}
</script>
<script module="echarts" lang="renderjs">
let myChart
export default {
mounted() {
if (typeof window.echarts === 'function') {
this.initEcharts()
} else {
// 动态引入较大类库避免影响页面展示
const script = document.createElement('script')
// view 层的页面运行在 www 根目录,其相对路径相对于 www 计算
script.src = 'static/echarts.js'
script.onload = this.initEcharts.bind(this)
document.head.appendChild(script)
}
},
methods: {
initEcharts() {
myChart = echarts.init(document.getElementById('echarts'))
// 观测更新的数据在 view 层可以直接访问到
myChart.setOption(this.option)
},
updateEcharts(newValue, oldValue, ownerInstance, instance) {
// 监听 service 层数据变更
myChart.setOption(newValue)
},
onClick(event, ownerInstance) {
// 调用 service 层的方法
ownerInstance.callMethod('onViewClick', {
test: 'test'
})
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.echarts {
margin-top: 100px;
width: 100%;
height: 300px;
}
</style>
注意事项
不可以使用 App、Page 的生命周期
APP 端可以使用 dom、bom API,不可直接访问逻辑层数据,不可以使用 uni 相关接口(如:uni.request)
H5 端逻辑层和视图层实际运行在同一个环境中,相当于使用 mixin 方式,可以直接访问逻辑层数据。所以命名要注意区分
边栏推荐
猜你喜欢
Online Excel based on Next.js
如何优雅的消除系统重复代码?
leetcode: 253. How many meeting rooms are required at least
MySQL优化学习笔记
HarePoint Analytics for SharePoint Online
Leetcode: 215 disorderly to find the first big k element in the array
全球电子产品需求放缓,三星手机越南工厂每周只需要干 3~4 天
This week to discuss the user experience: Daedalus Nemo to join Ambire, explore the encryption of the ocean
Go 语言快速入门指南: 变量和常量
1401 - Web technology 】 【 introduction to graphical Canvas
随机推荐
Cisco - Small Network Topology (DNS, DHCP, Web Server, Wireless Router)
QT笔记——QUuid了解
Next -21- 添加相册系列 - 1- 框架设置
Next -19- 开启fancybox查看图片大图
Byte、Short、Integer、Long内部缓存类的对比与源码分析
X-ray grazing incidence focusing mirror
2022杭电多校4
技术分享| 小程序实现音视频通话
leetcode: 255 Verify preorder traversal sequence binary search tree
Cisco-小型网络拓扑(DNS、DHCP、网站服务器、无线路由器)
leetcode: 251. Expanding 2D Vectors
IP第十七天笔记
7 天找个 Go 工作,Gopher 要学的条件语句,循环语句 ,第3篇
Nuget 通过 dotnet 命令行发布
全球电子产品需求放缓,三星手机越南工厂每周只需要干 3~4 天
Basic Introduction for PLSQL
基于数据库实现分布式锁
MVCC实现过程
界面组件DevExpress ASP.NET Core v22.1 - 增强数据导出功能
你一定从未看过如此通俗易懂的YOLO系列(从v1到v5)模型解读