阿里云dataV大屏可视化的使用攻略——vue项目

好好学习 ,天天向上。Are you ready?在这里插入图片描述

代码奉上!!!!!!!!!

首先登陆阿里云控制台,创建应用
阿里云dataV大屏可视化的使用攻略——vue项目_第1张图片
选模板,创建名称
阿里云dataV大屏可视化的使用攻略——vue项目_第2张图片
通过编辑预览项目
阿里云dataV大屏可视化的使用攻略——vue项目_第3张图片
阿里云dataV大屏可视化的使用攻略——vue项目_第4张图片

发布大屏阿里云dataV大屏可视化的使用攻略——vue项目_第5张图片发布成功,可以去直接访问网址,通过vue项目内嵌iframe 来实现dataV的引用

demo1 vue代码示例 (此处为未设置Token验证)

阿里云dataV大屏可视化的使用攻略——vue项目_第6张图片

<template>
  <div class="block">
    <iframe
      :width="searchTableWidth"
      :height="searchTableHeight"
      :src="reportUrl"
      style="border:none"
    />
  </div>
</template>

<script>
export default {
  data() {
    return {
      reportUrl: '',
      searchTableHeight: 0,
      searchTableWidth: 0
    }
  },
  watch: {
    '$route': function() {
      // 监听路由变化
      this.reportUrl = this.$route.meta.pathUrl
    }
  },
  created() {
   this.reportUrl = 'http://datav.aliyun.com/share8888888888888888888888'
  },
  mounted() {
    window.onresize = () => {
      this.widthHeight() // 自适应高宽度
    }
    this.$nextTick(function() {
      this.widthHeight()
    })
  },
  methods: {
    widthHeight() {
      this.searchTableHeight = window.innerHeight + 'px'
      this.searchTableWidth = window.innerWidth + 'px'
    }
  }
}
</script>
<style lang="scss" scoped>
</style>

demo2 vue代码示例 (此处为设置Token验证)

阿里云dataV大屏可视化的使用攻略——vue项目_第7张图片

<template>
  <div class="block">
    <iframe
      :width="searchTableWidth"
      :height="searchTableHeight"
      :src="reportUrl"
      style="border:none"
    />
  </div>
</template>

<script>
const crypto = require('crypto')
export default {
  data() {
    return {
      reportUrl: '',
      searchTableHeight: 0,
      searchTableWidth: 0
    }
  },
  watch: {
    '$route': function() {
      // 监听路由变化
      this.reportUrl = this.$route.meta.pathUrl
    }
  },
  created() {
    var token = 'lKqT2q6h5ME0bo99999999999'
    var screenID = '09e1538779103777777777777777'
    var time = Date.now()
    var stringToSign = screenID + '|' + time
    console.log(token, stringToSign)
    var signature = crypto.createHmac('sha256', token).update(stringToSign).digest().toString('base64')
    this.reportUrl = 'http://datav.aliyun.com/share/' + screenID + '?_datav_time=' + time + '&_datav_signature=' + encodeURIComponent(signature)
  },
  mounted() {
    window.onresize = () => {
      this.widthHeight() // 自适应高宽度
    }
    this.$nextTick(function() {
      this.widthHeight()
    })
  },
  methods: {
    widthHeight() {
      this.searchTableHeight = window.innerHeight + 'px'
      this.searchTableWidth = window.innerWidth + 'px'
    }
  }
}
</script>
<style lang="scss" scoped>
</style>


你可能感兴趣的:(阿里云dataV大屏可视化的使用攻略——vue项目)