gpt4 book ai didi

javascript - VueTable 2 $refs 对象在挂载的钩子(Hook)中为空

转载 作者:行者123 更新时间:2023-12-05 00:49:46 25 4
gpt4 key购买 nike

我已经阅读了几篇文章,其中 $refs vue 实例的属性仅在 Vue.js 的挂载钩子(Hook)中可用

我在我的 vue 组件中设置了一个自定义事件监听器,用于监听输入字段中的日期更改。一旦发生这种情况,我将更改日期的查询参数以从我的 API 中获取一组新的结果。

我的问题是我无法使用新的查询参数运行 refresh() 方法。

这是我的组件

<template>
<vuetable
:fields="table.fields"
:apiUrl="table.url"
:append-params="urlParams"
></vuetable>
</template>

<script>
import { eventBus } from '../app.js';
import Vuetable from 'vuetable-2';
import moment from 'moment';

export default {
data: function() {
return {
urlParams: {
d: moment().add(1, 'd')._d, // date selected
//p: null, // product selected
},
lineItems: '',
table: {
url: '/home/bakery/lineitems/', // by default we need tomorrows orders
showTable: false,
fields: [
{ name: 'order_id', title: 'Order#' },
{ name: 'customer_name', title: 'Customer' },
{ name: 'qty', title: 'QTY' },
{ name: 'product_name', title: 'Product' },
{ name: 'variation', title: 'Variations', callback: 'formatArray' },
{ name: 'collection_time', title: 'Timeslot' },
{ name: 'store', title: 'Transport' },
{ name: 'order_id', title: 'Actions' }
],
},
}
},
components: {
'vuetable': Vuetable,
},
methods: {
filterByProduct: function(val, ev) {
this.selectedProduct = val;
this.table.url = '/home/bakery/lineitems?d=' + moment(data) + '&p=' + val;
},
formatArray: function(val) {
var valArray = JSON.parse(val); // convert API string to array

var text = '<ul>';
for(var i in valArray) {
text += '<li>' + valArray[i].key + ': ' + valArray[i].value + '</li>';
}
text += '</ul>';

return text;
},
},
mounted: function() {
//console.log(this.$refs);
eventBus.$on('dateSelected', (data) => {
self = this;
self.urlParams.d = moment(data);
Vue.nextTick( function() {
self.$refs.vuetable.refresh();
});
});
eventBus.$on('filter-set', (data) => {
console.log(data);
});
// continuously check for updates in the db
setInterval(function () {
//this.getProductTotals(this.selectedDate);
}.bind(this), 5000);
}

}
</script>

一切运行 100% 正常,包括运行 Vue.nextTick()

如果我控制台.log self.$refs 我得到一个空对象。即使在我的根 app.js 文件中,我也无法获得除空对象之外的任何内容。

最佳答案

您正在尝试访问 this.$refs.vuetable ,但您的模板中没有任何带有 ref 的元素属性。
添加 ref="vuetable"给您的<vuetable>标签:

<template>
<vuetable
:fields="table.fields"
:apiUrl="table.url"
:append-params="urlParams"
ref="vuetable"
></vuetable>
</template>
Here's the documentation on refs .

关于javascript - VueTable 2 $refs 对象在挂载的钩子(Hook)中为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47015435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com