Element UI&ECharts报错:TypeError: Cannot read properties of undefined (reading ‘getAttribute‘)

这篇具有很好参考价值的文章主要介绍了Element UI&ECharts报错:TypeError: Cannot read properties of undefined (reading ‘getAttribute‘)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

报错内容:

Element UI&ECharts报错:TypeError: Cannot read properties of undefined (reading ‘getAttribute‘),Vue,echarts,前端,javascript

实现的功能:

使用Element UI的Tabs组件来实现多个Tabs标签页,其中每个标签页内放置的是不同的Echarts图表,同时还需要根据step值来判断决定展示哪些标签页

错误写法如下:

<el-tabs type="border-card" @tab-click="handleClick" v-model="activeName">
    <el-tab-pane label="Step1" name="Step1" v-if="step >= 1">
        <el-col :span="12">
          <el-card shadow="hover" style="width: 100%;height:800px;">
            <el-row id="Step11" :gutter="0">
              <el-col :span="24">
                <!--Echarts图表-->
                <div ref="Step11" style="width: 100%;height:700px;"></div>
              </el-col>
            </el-row>
          </el-card>
        </el-col>
    </el-tab-pane>
    <el-tab-pane label="Step2" name="Step2" v-if="step >= 2">Echarts图表同上</el-tab-pane>
    <el-tab-pane label="Step3" name="Step3" v-if="step >= 3">Echarts图表同上</el-tab-pane>
    <el-tab-pane label="Step4" name="Step4" v-if="step >= 4">Echarts图表同上</el-tab-pane>
    <el-tab-pane label="Step5" name="Step5" v-if="step >= 5">Echarts图表同上</el-tab-pane>
</el-tabs>

mounted() {
    this.myChartMethodStep1()
    this.myChartMethodStep2()
    this.myChartMethodStep3()
    this.myChartMethodStep4()
    this.myChartMethodStep5()
},

methods:{
    myChartMethodStep1(){
        // 初始化
        var Step11Echart = echarts.init(this.$refs.Step11)

        // 配置
        var Step11Option = {}

        Step11Echart.setOption(Step11Option)
    },
    myChartMethodStep2(){
        // 同上
    },
    myChartMethodStep3(){
        // 同上
    },
    myChartMethodStep4(){
        // 同上
    },
    myChartMethodStep5(){
        // 同上
    },

},

报错原因:(求助ChatGPT)

这通常意味着代码尝试访问一个未定义的变量或对象的 getAttribute 属性,最可能出现这个错误的原因是'this.$refs.Step11'是未定义的或不存在的

结合我使用的v-if,问题就找到了,当我初始step为0的时候,'this.$refs.Step11'被v-if完全移除, 'this.$refs.Step11'可能会变成undefined,那么我在myChartMethodStep1中调用到 'this.$refs.Step11'就会导致错误

那么尝试使用v-show来代替v-if,因为v-show只是控制元素的显示与隐藏,而v-if可以完全移除或添加元素,但是新的问题出现了:v-show无法控制我的标签页展示个数,即v-show无法生效,还是会默认所有标签页都展示

原因可能是:v-show在普通的HTML元素上起作用,但是对于Element UI组件,它可能不会按预期工作,因为组件可能具有自己的显示和隐藏逻辑,最后采用<el-tab-pane>组件自带的控制其显示与隐藏的disabled属性

修改后不再报错:

<el-tabs type="border-card" @tab-click="handleClick" v-model="activeName">
    <el-tab-pane label="Step1" name="Step1" :disabled="step < 1">
        <el-col :span="12">
          <el-card shadow="hover" style="width: 100%;height:800px;">
            <el-row id="Step11" :gutter="0">
              <el-col :span="24">
                <!--Echarts图表-->
                <div ref="Step11" style="width: 100%;height:700px;"></div>
              </el-col>
            </el-row>
          </el-card>
        </el-col>
    </el-tab-pane>
    <el-tab-pane label="Step2" name="Step2" :disabled="step < 2">Echarts图表同上</el-tab-pane>
    <el-tab-pane label="Step3" name="Step3" :disabled="step < 3">Echarts图表同上</el-tab-pane>
    <el-tab-pane label="Step4" name="Step4" :disabled="step < 4">Echarts图表同上</el-tab-pane>
    <el-tab-pane label="Step5" name="Step5" :disabled="step < 5">Echarts图表同上</el-tab-pane>
</el-tabs>

最终效果为:每个标签页都会展示,但是disabled会控制满足step的标签页才可以点击进去查看,比如下图:step=2时,Step1和Step2可以查看,Step3-Step5不可以查看

Element UI&ECharts报错:TypeError: Cannot read properties of undefined (reading ‘getAttribute‘),Vue,echarts,前端,javascript

 文章来源地址https://www.toymoban.com/news/detail-745527.html

到了这里,关于Element UI&ECharts报错:TypeError: Cannot read properties of undefined (reading ‘getAttribute‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包