0

我正在尝试将 Kendo UI 上的数据与来自 Vuex getter 的数据绑定。

我尝试了以下但没有运气。请帮助我是否在 vuex 或剑道上遗漏了什么。

剑道扩展:

<kendo-grid :data-source="kendoDataSource">
</kendo-grid>

组件:

  computed: {
    customers() {
      return this.$store.getters.customers;
    }
  },
  data() {
    return {
      kendoDataSource: {
        schema: {
          data: function(response) {
            return response;
          },
          model: {
            id: "CustomerID",
            fields: {
              CompanyName: { type: "string" },
            }
          }
        },
        transport: {
          read: function(options) {
            options.success(this.customers);
          }
        }
      }    
     };

我收到错误消息。TypeError: Cannot read property 'length' of undefined

当我尝试this.customers在剑道的传输中调试时,该对象this.customers始终为空。

数据格式如下图:

[
    {
      "CustomerID": "ALFKI",
      "CompanyName": "Alfreds Futterkiste"
    },
    {
      "CustomerID": "ANATR",
      "CompanyName": "Ana Trujillo Emparedados y helados"
    }
]

Store.js

export default {
  state: {
    customers: JSON.parse(JSON.stringify(customers))
  },
  getters: {
    customers(state) {
      return state.customers;
    }
  }
};

当我尝试直接绑定数据时 options.success(this.customers);

就像网格下方显示的方式一样,成功填充了数据。但是当我尝试使用绑定时getters出现错误。

TypeError: Cannot read property 'length' of undefined

  options.success([
        {
          "CustomerID": "ALFKI",
          "CompanyName": "Alfreds Futterkiste",
        },
        {
          "CustomerID": "ANATR",
          "CompanyName": "Ana Trujillo Emparedados y helados",
        }
    ]);
4

1 回答 1

1

我认为您想使用计算属性而不是数据。

computed: {
    customers() {
      return this.$store.getters.customers;
    },
    kendoDataSource() {
      const customers = this.customers
      return {
        schema: {
          data: function(response) {
            return response;
          },
          model: {
            id: "CustomerID",
            fields: {
              CompanyName: { type: "string" },
            }
          }
        },
        transport: {
          read: function(options) {
            options.success(customers);
          }
        }
      }
    }
  }
}
于 2018-05-22T03:58:52.893 回答