码迷,mamicode.com
首页 > 编程语言 > 详细

二级联动:map,for循环一级数据,调用接口获取对象数据依次放到数组里(解决由于后端java是多线程,接收到的数据放入(push)数组中有可能会顺序不对)

时间:2020-03-06 17:21:30      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:his   二级联动   级联   对象   div   ===   ==   获取   顺序   

解决方法:遍历一级数据时先push一个新的对象,调用接口获取到数据之后splice方法通过index的值判断放入到数组的对应下标下
this.tableData一级数据:
 this.relationMaterialNameList二级数据:
this.tableData.map((item,index)=>{
                            this.relationMaterialNameList.push({})
                            // 编辑页面项目下拉框数据
                            this.getSpecificationList(item.reimbursementType, index)
     })
 
 // 项目下拉数据
            getSpecificationList(code, index) {
                // 项目下拉数据
                this.$axios({
                    url: `/chenfan_sample/sampleDevReim/relationMaterial?reimbursementType=${code}`,
                    method: ‘get‘,
                }).then((res) => {
                    if (res.code === 200) {
                        this.relationMaterialNameList.splice(index, 1, res.obj)
                    }
                })
            },

二级联动:map,for循环一级数据,调用接口获取对象数据依次放到数组里(解决由于后端java是多线程,接收到的数据放入(push)数组中有可能会顺序不对)

标签:his   二级联动   级联   对象   div   ===   ==   获取   顺序   

原文地址:https://www.cnblogs.com/wssdx/p/12427327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!