无法在 Vuejs 中访问 ag-Grid API

Posted

技术标签:

【中文标题】无法在 Vuejs 中访问 ag-Grid API【英文标题】:Cannot access ag-Grid API in Vuejs 【发布时间】:2019-06-06 16:39:04 【问题描述】:

我正在 ag-grid 网站上执行简单的“在您的 Vue 项目中使用 ag-Grid 入门”,但遇到了问题。在教程的某个步骤,它尝试使用 ag-grid-vue 上的 gridReady 属性来执行一个名为 onGridReady 的函数。但这似乎永远不会触发。

我完全按照此处所述的说明进行操作:https://www.ag-grid.com/vue-getting-started/?utm_source=ag-grid-readme&utm_medium=repository&utm_campaign=github

App.vue:

<template>
    <div>
        <button @click="getSelectedRows()">Get Selected Rows</button>

        <ag-grid-vue style="width: 500px; height: 500px;"
                     class="ag-theme-balham"
                     :columnDefs="columnDefs"
                     :rowData="rowData"
                     rowSelection="multiple"

                     :gridReady="onGridReady">
        </ag-grid-vue>
    </div>
</template>

<script>
    import AgGridVue from "ag-grid-vue";

    export default 
        name: 'App',
        data() 
            return 
                columnDefs: null,
                rowData: null
            
        ,
        components: 
            AgGridVue
        ,
        watch: 
          onGridReady: 
            handler: function (params) 
              alert('eeeee')
            ,
            deep: true
          
        ,
        methods: 
            onGridReady(params) 
                this.gridApi = params.api;
                this.columnApi = params.columnApi;
                alert('TEST')
            ,
            getSelectedRows() 
                const selectedNodes = this.gridApi.getSelectedNodes();
                const selectedData = selectedNodes.map( node => node.data );
                const selectedDataStringPresentation = selectedData.map( node => node.make + ' ' + node.model).join(', ');
                alert(`Selected nodes: $selectedDataStringPresentation`);
            
        ,
        beforeMount() 
            this.columnDefs = [
                headerName: 'Make', field: 'make', checkboxSelection: true,
                headerName: 'Model', field: 'model',
                headerName: 'Price', field: 'price'
            ];

            fetch('https://api.myjson.com/bins/15psn9')
                .then(result => result.json())
                .then(rowData => this.rowData = rowData);
        
    
</script>

<style lang="scss">
@import "~ag-grid-community/dist/styles/ag-grid.css";
@import "~ag-grid-community/dist/styles/ag-theme-balham.css";
#app 
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;

</style>

我希望能够单击按钮并查看所选节点并发出警报。 什么是错误信息: 未捕获的类型错误:无法读取未定义的属性“getSelectedNodes” 在 VueComponent.getSelectedRows (VM2832 App.vue:54)

【问题讨论】:

您还没有在任何地方定义“gridApi”。或“columnApi”。也许它们应该是数据元素。 是的,虽然我发现在教程示例中这很奇怪,但“onGridReady”甚至从未触发过也很奇怪。现在,当我将 :gridReady="onGridReady" 更改为 :gridReady="onGridReady()" 时,它会触发。但我现在不知道要传递什么作为参数。 【参考方案1】:

改用它来绑定事件(在 Vue 中):

@gridReady="onGridReady"

见:

https://vuejs.org/v2/guide/events.html https://vuejs.org/v2/guide/syntax.html#v-on-Shorthand

【讨论】:

这行得通。谢谢!也感谢您提供有关接受答案的信息。

以上是关于无法在 Vuejs 中访问 ag-Grid API的主要内容,如果未能解决你的问题,请参考以下文章

如何在 React 函数组件(useState 挂钩)中访问 ag-Grid API?

AG-grid Vue 不适用于 vuejs 版本 3

text ag-Grid VueJS组件

Ag-Grid - 访问所有数据 - 包括计算列

VueJS 访问 JSON 数据

如何在 vuejs 中访问具有 Axios 令牌的 API?