首页 > 解决方案 > Vuejs:将 SAVE 函数传递给 CRUD 组件

问题描述

我正在努力寻找一个需要在 vuejs 中进行高级父子通信的适当解决方案。可以有许多不同的父组件,它们具有如何保存数据的逻辑。另一方面,只有一个子组件具有元素列表和创建新元素的表单,但它不知道如何保存数据。

问题是:是否有任何其他方式(更好的方法)具有相同的功能但摆脱this.$refs.child链接。例如,我想知道是否可以将函数(SaveParent1(...)SaveParent2(...))传递给子组件。但问题是该函数包含一些父变量,这些变量在子上下文中不可用,并且这些变量可以在运行时更改。

只是几个澄清:

  1. 方法SaveParent1SaveParent2在现实生活中返回 Promise (axios)。
  2. child-component就像在其他地方使用的 CRUD。

目前通讯看起来像这样:孩子-event->父母-ref->孩子。

下面是一个例子:

<div id="app">
  <h2>&#128512;Advanced Parent-Child Communication:</h2>
  <parent-component1 param1="ABC"></parent-component1>
  <parent-component2 param2="XYZ"></parent-component2>
</div>
Vue.component('parent-component1', {
  props: { param1: { type: String, required: true } },
  methods: {
    onChildSubmit(p) {
        // Here will be some logic to save the param. Many different parents might have different logic and all of them use the same child component. So child-component contains list, form and validation message but does not know how to save the param to the database.
      var error = SaveParent1({ form: { p: p, param1: this.param1 } });
      if (error)
        this.$refs.child.paramFailed(error);
      else
        this.$refs.child.paramAdded(p);
    }
  },
  template: `<div class="parent"><p>Here is parent ONE:</p><child-component ref="child" @submit="onChildSubmit"></child-component></div>`
});

Vue.component('parent-component2', {
  props: { param2: { type: String, required: true } },
  methods: {
    onChildSubmit(p) {
        // Here is a different logic to save the param. In prictice it is gonna be different requests to the server.
      var error = SaveParent2({ form: { p: p, param2: this.param2 } });
      if (error)
        this.$refs.child.paramFailed(error);
      else
        this.$refs.child.paramAdded(p);
    }
  },
  template: `<div class="parent"><p>Here is parent TWO:</p><child-component ref="child" @submit="onChildSubmit"></child-component></div>`
});

Vue.component('child-component', {
  data() {
    return {
      currentParam: "",
      allParams: [],
      errorMessage: ""
    }
  },
  methods: {
    submit() {
        this.errorMessage = "";
        this.$emit('submit', this.currentParam);
    },
    paramAdded(p) {
        this.currentParam = "";
        this.allParams.push(p);
    },
    paramFailed(msg) {
        this.errorMessage = msg;
    }
  },
  template: `<div><ol><li v-for="p in allParams">{{p}}</li></ol><label>Add Param: <input v-model="currentParam"></label><button @click="submit" :disabled="!currentParam">Submit</button><p class="error">{{errorMessage}}</p></div>`
});

function SaveParent1(data) {
  // Axios API to save data. Bellow is a simulation.
  if (Math.random() > 0.5)
    return null;
  else
    return 'Parent1: You are not lucky today';
}

function SaveParent2(data) {
  // Axios API to save data. Bellow is a simulation.
  if (Math.random() > 0.5)
    return null;
  else
    return 'Parent2: You are not lucky today';
}

new Vue({
  el: "#app"
});

还有一个现场演示:https ://jsfiddle.net/FairKing/novdmcxp/

标签: javascriptvue.jsparent-childcrud

解决方案


在架构上,我建议使用完全从组件层次结构中抽象出来的服务,并且您可以在每个组件中注入和使用该服务。使用这种组件层次结构和架构,很容易遇到这些问题。从组件中抽象出尽可能多的功能和业务逻辑是很重要的。我认为这些现代框架中的组件只是类固醇上的 HTML 模板,它们最多应该充当控制器,使它们尽可能地愚蠢和瘦,这样你就不会遇到这些情况。我不知道vue.js,所以我无法为您提供技术解决方案,但希望此指示对您有所帮助


推荐阅读