在使用es6的react函数组件中,是否可以使用函数初始化属性值?例如:
const getMyPropertyValue = (condition) => {
switch(condition){
case "a": return "string a";
case "b": return "string b";
}
}
const myObject = {
property1: 'value1',
property2: 'value2',
property3: getMyPropertyValue('b')
}
属性名称是已知的,属性值是动态的。我想要一个内联函数来设置property3的值。可能吗?
暂无答案!
目前还没有任何答案,快来回答吧!