In Typescript how to fix Cannot set property 'first' of undefined

前端 未结 4 495
一个人的身影
一个人的身影 2020-12-20 12:37

I\'m trying to set a the sub property first that is defined in the Name interface but when do so I always get an error for example:



        
4条回答
  •  温柔的废话
    2020-12-20 13:03

    Class properties are not automatically initialized on instantiation. You need to initialize them with the corresponding objects manually -- in this case, with an object containing the properties defined by its interface:

    class Person {
        private name: Name;
    
        public setName(firstName, lastName) {
            this.name = {
                first: firstName,
                last: lastName
            };
        }
    }
    

    Another approach -- for example, in case there are multiple methods setting properties on the same object -- is to first initialize the property to an empty object, preferably in the constructor:

    class Person {
        private name: Name;
    
        constructor() {
            this.name = {};
        }
    
        public setName(firstName, lastName) {
            this.name.first = firstName;
            this.name.last = lastName;
        }
    
        public setFirstName(firstName) {
            this.name.first = firstName;
        }
    }
    

    However, with the current setup this will yield a compile error when assigning {} to this.name, because the Name interface requires the presence of a first and a last property on the object. To overcome this error, one might resort to defining optional properties on an interface:

    interface Name {
        first?: string;
        last?: string;
    }
    

提交回复
热议问题