你好,我在reactjs中有这段代码:
{props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}
我需要将它存储在一个变量中,以便在另一个reactjs文件中使用它,所以我这样做了:
this.testVarible= {props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}
但它似乎不起作用,
其结果是: this.testVarible=2 我也尝试这样做:
this.testVarible= {{props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}}
但我收到错误。
达令说
相关分类