Vuejs undefined 属性 错误但已定义

Vuejs undefined property error but it is defined

我有一个简单的 Vue 组件,它只列出服务器连接数据:

<template>
  <div class="container">
    <div class="row">
      <div class="col-xs-12">
        <div class="page-header">
          <h2 class="title">Data</h2>
        </div>
        <br>
      </div>
      <div class="col-xs-12">
        <table class="table">
          <tr>
            <td>Server</td>
            <td><strong>{{config.servers}}</strong></td>
          </tr>
          <tr>
            <td>Port</td>
            <td><strong>{{config.port}}</strong></td>
          </tr>
          <tr>
            <td>Description</td>
            <td><strong>{{config.description}}</strong></td>
          </tr>
          <tr>
            <td>Protocol</td>
            <td :class="{'text-success': isHttps}">
              <i v-if="isHttps" class="fa fa-lock"></i>
              <strong>{{config.scheme}}</strong>
            </td>
          </tr>
        </table>
      </div>
    </div>
  </div>
</template>

<script>
import { mapState } from 'vuex'

export default {
  name: 'Application',

  data () {
    return {
      config: {
        scheme: '',
        servers: '',
        port: '',
        description: ''
      }
    }
  },

  computed: {
    ...mapState(['server']),

    isHttps: () => this.config.scheme === 'https'
  },

  mounted () {
    const matched = this.server.match(/(https?):\/\/(.+):(\d+)/)
    this.config = {
      scheme: matched[1],
      servers: matched[2],
      port: matched[3],
      description: window.location.hostname.split('.')[0] || 'Server'
    }
  }
}
</script>

Vuex 的 server 已经在安装此组件时定义并完成,如果我尝试 console.log(this.server),它会显示正确的 URL。问题是,我计算的 属性 isHttps 抛出以下错误:

[Vue warn]: Error in render function: "TypeError: Cannot read property 'scheme' of undefined"

found in

---> <Application> at src/pages/Aplicativo.vue
       <App> at src/App.vue
         <Root>

我已经尝试将 config 更改为其他内容,例如 configurationdetails,甚至将 mounted 更改为 created,但是错误不断出现,我的模板 根本没有呈现

首先,我开始将 config 计算为 属性,但错误已经进入我的控制台。顺便说一句,像这样使用 store 作为计算 属性 也会抛出一个错误,指出我的 $store 未定义:

server: () => this.$store.state.server

我能做什么?

您正在为 isHttps 计算使用箭头函数。在这种情况下,this 指的是 window 而不是 Vue 实例,因此您将收到一条 cannot read property of undefined 消息,正确的 ES2015 语法是:

isHttps() { 
  return this.config.scheme === 'https'
}

server: () => this.$store.state.server也是同样的问题,应该是:

server() { 
  return this.$store.state.server
}