methods: { loadAdvertiserInfo() { axios.get('/advertiserInfo/page/all?pageSize=10').then(res => { if (res.data.code === '0') { this.advertiserList = res.data.data.list; this.advertiserList.forEach(item => { if(parseInt(this.currentId) === item.id) { // 当前选择的公告 item.isActive = true; this.currentAdvertiser = item; } else { item.isActive = false; } }) } }) },
时间: 2023-12-29 14:02:47 浏览: 87
Error:in ./node-modules/axios/lib/platform/index.js
这是一个Vue.js组件的方法,它使用axios库从服务器获取广告商信息列表,并将其存储在本地变量中。然后,它循环遍历该列表,并为当前选择的广告商设置'isActive'属性为true,同时将其存储在另一个本地变量中。这个方法可能会被组件的mounted函数或其他事件处理程序触发,以确保在组件加载时或其他相关情况下获取和显示广告商信息。
阅读全文