简体   繁体   中英

Property name on object from variable

Is there a way in typescript to set a property name from a variable?

Something like this

export function objectFactory(prop: string) {
    return {
        prop: {
            valid: false
        }
    };
}

You are looking for computed properties , this is an ES6 feature and not specific to TypeScript.

export function objectFactory(prop: string) {
    return {
        [prop]: {
            valid: false
        }
    };
}

You can do it like this:

export function objectFactory(prop: string) {
    let data: any = {};
    data[prop] = {};
    data[prop].valid = false;
    return data;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM