使用 Vue 的事件总线:为了实现点击当前按钮关注或取消关注时,另一个页面的 Vue 组件中的表格数据自动刷新

  1. 创建事件总线

    src 目录下创建一个新的文件,例如 eventBus.js,并添加以下代码:

    import Vue from 'vue';
    export const EventBus = new Vue();
  2. 在当前组件中触发事件

    在第一个组件的 Upby3 方法中,调用事件总线来触发事件:

  3. import { EventBus } from './eventBus'; // 根据实际路径调整

    methods: {
      Upby3: function (id) {

        UpdatebyAction(that.url.Updateby, { id: id }).then((res) => {
          if (res.success) {
            that.reCalculatePage(1);
            that.$message.success(res.message);
            that.loadData();

            // 触发事件通知其他组件数据已更新
            EventBus.$emit('data-updated');
          } else {
            that.$message.warning(res.message);
          }
        });
      }
    }

     

  4. 在另一个组件中监听事件

    在第二个组件中,监听 data-updated 事件并刷新表格数据:

    import { EventBus } from './eventBus'; // 根据实际路径调整

    data() {
      return {
        tableData: []
      };
    },
    methods: {
      getselctable() {
        selctTable().then(res => {
          const result = res.result;
          if (result.length > 0) {
            this.tableData = result;
          }
        });
      }
    },
    watch: {
      tableData(newVal) {
       // 监听数据更新事件
      EventBus.$on('data-updated', () => {
        this.getselctTable();
      });
      }
    },
    mounted() {
      this.getselctTable();
    }

     

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值