1

背景

我将一组对象传递给可以在此处找到的材料自动完成。

当我第一次在列表中选择一个项目时,它会引发错误,然后如果我再次单击该项目,它会按预期选择它。每次单击自动完成中的项目时,都会重复相同的过程。

示例错误

[Vue 警告]:“输入”的事件处理程序出错:“TypeError:无法读取未定义的属性‘构造函数’”

示例代码

<template>
<md-autocomplete 
  v-model="customer"
  :md-options="customers" 
  @md-changed="getCustomers" 
  @md-opened="getCustomers"
  @md-selected="getSelected" 
>
</md-autocomplete>
</template>

<script>
data: () => ({
    customers: [],
    customer: "", // I also tried making this a {}
 }),
methods: {
getCustomers(searchTerm) {
  this.customers = new Promise(resolve => {
    if (!searchTerm) {
      resolve(this.GET_CUSTOMERS);
    } else {
      const term = searchTerm.toLowerCase();
      this.customers = this.GET_CUSTOMERS.filter(({ email }) => {
      email.toLowerCase().includes(term);
  });
    resolve(this.customers);
  }
  });
},


getSelected() {
     console.log(this.customer);
   },
}
</script>

数据示例

GET_CUSOTMERS: [
  { client_id: 1, email: "example@example.com" },
  { client_id: 2, email: "example@example.com" }
];

问题

这个错误是什么意思,我该如何解决?我读过几年前通过这个错误从材料中使用自动完成的角度存在一个错误,但我乐观地认为这目前是可修复的,而不是材料 vue 的错误。

4

1 回答 1

1

对错误进行故障排除

根据MdAutocomplete's input-handler源代码,searchTermundefined您的情况下(因此有关访问的错误constructorundefined

// MdAutocomplete.vue: onInput()
if (this.searchTerm.constructor.toString().match(/function (\w*)/)[1].toLowerCase() !== 'inputevent') {
         ^^^^^^^^^^

并且searchTerm通常等于它的valueprop

data () {
  return {
    searchTerm: this.value,
    //...
  }
},
watch: {
  value (val) {
    this.searchTerm = val
  },
  //...
},

...除非选择了一个项目:

selectItem (item, $event) {
  const content = $event.target.textContent.trim()
  this.searchTerm = content
  //...
}

因此,当错误发生时,valueof很可能MdAutocomplete以某种方式undefined(来自您的v-model),导致searchTerm也是undefined。当您选择一个项目时,它searchTerm被重置为选择的文本内容,并且不会发生错误。

我无法使用 OP 中的代码片段重现这些确切症状,但出现看似无关的错误:demo。也许问题是缺少重现问题的重要细节。

将对象数组用于 md-autocomplete 选项

  • ( md-optionsie, this.customershere) 承诺必须返回一个字符串数组,因此您必须将对象数组转换为预期的格式(使用Array.prototype.map):

    this.customers = new Promise(resolve => {
      if (!searchTerm) {
        resolve(GET_CUSTOMERS.map(x => x.email));   // <-- map to `email` property
      } else {
        const term = searchTerm.toLowerCase();
        this.customers = GET_CUSTOMERS.filter(/*...*/).map(x => x.email);   // <-- map to `email` property
        resolve(this.customers);
      }
    }
    
  • Array.prototype.filter回调必须返回一个布尔值才能进行任何过滤。以下箭头函数用作回调,不返回任何内容:

    GET_CUSTOMERS.filter(({ email }) => {
      email.toLowerCase().includes(term);
    });
    

    您可以删除箭头函数的括号:

    GET_CUSTOMERS.filter(({ email }) => email.toLowerCase().includes(term));
    

    或使用return声明:

    GET_CUSTOMERS.filter(({ email }) => {
      return email.toLowerCase().includes(term);
    });
    

演示(固定)

于 2018-10-27T21:21:14.587 回答