我有一个Ag-Grid,其中包含某些操作按钮,并且从MongoDB数据库中填充了动态数据。我的MasterData.Vue文件上有一个刷新网格的方法。网格记录中的每个操作按钮都将执行更新/删除操作。当我单击这些按钮时,我在另一个Modal.Vue文件中设计了一个自定义的弹出模态组件。我想在Modal.Vue中调用该RefreshGrid()方法。我尝试使用道具共享数据,但是方法上不起作用。
MasterData.Vue脚本
<script>
import { AgGridVue } from 'ag-grid-vue';
import { mapGetters } from 'vuex';
import gridEditButtons from '@/components/GridEditButton';
import MasterModal from '@/components/MasterModal';
export default {
name: 'masterData',
data () {
return {
addBtnClick: false,
delBtnClick: false,
editVisible: false,
selected: 'Business Area',
dropdown_tables: [
'Business Area',
'Council',
'Sub Area',
'Type',
'Work Flow Stage'
],
gridOptions: {
domLayout: 'autoHeight',
enableColumnResize: true,
rowDragManaged: true,
animateRows: true,
context: {
vm: null
}
}
};
},
components: {
'ty-master-modal': MasterModal,
'ag-grid-vue': AgGridVue,
gridEditButtons
},
methods: {
// Filter Grid Contents based on Dropdown selection
RefreshGrid: function () {
let cName;
if (this.selected === 'Business Area') {
cName = 'businessarea';
} else if (this.selected === 'Council') {
cName = 'council';
} else if (this.selected === 'Type') {
cName = 'typemaster';
} else if (this.selected === 'Work Flow Stage') {
cName = 'workflowstage';
}
let obj = {
vm: this,
collectionName: cName,
action: 'masterData/setMasterData',
mutation: 'setMasterData'
};
this.$store.dispatch(obj.action, obj);
}
};
</script>
Modal.Vue脚本
<script>
import {mapGetters} from 'vuex';
export default {
name: 'MasterModal',
props: {
readOnly: Boolean,
entryData: Object,
addBtnClick: Boolean,
delBtnClick: Boolean,
editVisible: Boolean,
selectedTable: String
},
data () {
return {
fieldAlert: false,
isReadOnly: false,
dialog: false,
dialogDelete: false,
valid: false,
visible: false,
disable: false
};
},
computed: {
...mapGetters('masterData', {
entryState: 'entryState',
// entryData: 'entryData',
columns: 'columns',
selectedRowId: 'selectedRowId'
})
},
watch: {
addBtnClick: function (newValue, oldValue) {
this.setDialog(!this.dialog);
},
editVisible: function (newValue, oldValue) {
this.setVisible(!this.visible);
},
delBtnClick: function (newValue, oldValue) {
this.setDialogDelete(!this.dialogDelete);
}
},
methods: {
setDialog (bValue) {
this.dialog = bValue;
},
setDialogDelete (bValue) {
this.dialogDelete = bValue;
},
}
};
</script>
答案 0 :(得分:1)
有两种方法可以实现这一目标。
一种是使用发射
MasterModal.vue 组件中的在父 MasterData.Vue 组件中运行this.$emit('refreshGrid')
,使用<ty-master-modal @refreshGrid="RefreshGrid" ...>
如果您具有直接父子关系,这可能是最好的选择
另一种方法是将功能作为道具传递给子组件。
<ty-master-modal :onRefreshGrid="RefreshGrid" ...>
并在 MasterModal.vue 中添加一个道具onRefreshGrid
,然后您可以调用该函数。
使用vuex的另一种方法是向 MasterData.Vue 添加一个监视,并监视vuex存储中的变量,即。 actionInvoker
。 actionInvoker
更改时,将执行操作。要更改该值,请将其设置为0并在其之间递增或切换,或设置为随机值。好处是您可以从任何地方调用它。
此(以及以前的)解决方案的问题在于,您具有不应存在于视图/组件上的功能。我建议使用第三个解决方案,将功能推入vuex动作,然后您可以从任何地方调用它。尽管这也需要将selected
变量也存储在vuex中,并且如果要具有Modal和Master组件的多个实例,则单个存储将禁止这样做(除非您添加对多个实例的支持)。>