ant-design-vue a-select 无法直接获取value

发布于 2022-09-11 18:42:35 字数 1825 浏览 17 评论 0

为什么handleSearch, handleSearchChange, fetchGroupData无法取到data定义里的groupName?
图片描述

<template>
  <div class="table-page-search-wrapper">
    <a-select
      showSearch
      :value="groupName"
      placeholder="请输入 主账号名称"
      style="width: 400px"
      :defaultActiveFirstOption="false"
      :showArrow="false"
      :filterOption="false"
      @search="handleSearch"
      @change="handleSearchChange"
      :allowClear="true"
      :notFoundContent="null"
    >
      <a-select-option v-for="d in groupDatas" :key="d.value">{{d.text}}</a-select-option>
    </a-select>
  </div>
</template>

<script>
// from @/views/list/TableInnerEditList
import debounce from 'lodash/debounce'

export default {
  name: 'TableList',
  data () {
    return {
      groupName: '',
      groupDatas: []
    }
  },
  created () {
    this.debouncedGetGroup = debounce(this.fetchGroupData, 700)
  },
  methods: {
    handleSearch (value) {
      console.log('handleSearch', this.groupName)
      this.debouncedGetGroup()
    },
    handleSearchChange (value) {
      console.log('handleSearchChange', this.groupName)
      console.log('handleSearchChange', value)
    },
    fetchGroupData () {
      console.log('fetchGroupData', this.groupName)
      const _that = this
      _that.$axios.get(`/groups?name=${_that.groupName}&page_size=10`)
        .then((d) => {
          console.log(d)
          const result = d.data
          _that.groupDatas = []
          result.forEach((r) => {
            console.log(r)
            _that.groupDatas.push({
              value: r.id,
              text: r.name
            })
          })
        })
    }
  }
}
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相对绾红妆 2022-09-18 18:42:35
 <a-select
            showSearch
            placeholder="请输入类型"
            v-decorator="['reportTemplate', validatorRules.reportTemplate]"
          >
          <a-select-option v-for="d in templateDatas" :key="d.value" :value="d.value">{{d.text}}</a-select-option>
          </a-select>
         

去掉:value="groupName"试试

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文