【发布时间】:2021-09-19 15:55:30
【问题描述】:
我需要从会话中获取数组。我的控制器代码
return [
'buys' => request()->session()->get('userBuys')
];
Vue 组件
export default {
data() {
return {
buys: {}
}
},
methods: {
async getBuys() {
this.$axios.post('/products/mybuys')
.then(res => {
this.buys = res.data.buys
this.$root.hideLoading()
})
}
},
mounted() {
this.$root.showLoading()
this.getBuys()
}
}
所以我得到数组 我需要如何正确地foreach这个数组?我尝试了很多...
【问题讨论】: