欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解构表达式的实际用处

程序员文章站 2024-03-09 10:09:05
...
        //修改用户信息
        updateUser(){
            this.dialogFormVisibleUpdate = false;
            let obj = new Object();
            const {id,user,phone} = this.formUser;
            obj = {id:id,user:user,phone:phone};
            api.user.update(obj).then(response => {
                this.search(this.formInline);
                this.formUser = {};
            })
        },

用来复制对象的部分属性给新对象,不要太方便

相关标签: 工作问题记录