Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
642 views
in Technique[技术] by (71.8m points)

vue,两个接口给两个不同的对象进行赋值,修改第一个对象时,第二个对象也发生改变是怎么回事?

getCatalog().then((res)=>{
                    this.formInline.projectId = res.data.items
                    this.form.projectId = res.data.items
                })
                getPopularize().then((res)=>{
                    this.formInline.popularize = res.data
                    this.form.sourceAccountId = res.data
                })
// 点击修改用户
            uplodeClick(index,row){
                console.log(row)
                this.dialogVisible = true
                this.form.id = row.id;
                this.form.mobile = row.userName
                this.form.projectId.id = row.projectId
                this.form.sourceAccountId.code = row.source
            },

QQ截图20200526172335.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

来个深拷贝. 试试


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...