我需要将数组中的数据获取到Vue和JS中的一个组中。
我的代码:
mounted: function () {
axios.post('/Directory/Controller/Function', {
seleccionDestacado: 'Todos',
}).then(function (response) {
const grouped = _.groupBy(response.data, 'auto');
console.log(grouped)
this.AutosDestacados = grouped;
}.bind(this))
.catch(function (error) {
console.log(error);
});
},
之后,我得到了这种结构:
然后,当我在Vue中进行渲染时,只是我得到了car的名字,但无法将数据数组归入组。
能帮我吗