你好,我在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.','')}但它似乎不起作用,其結(jié)果是: this.testVarible=2 我也嘗試這樣做: this.testVarible= {{props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}}但我收到錯誤。
ReactJs 變量返回靜態(tài)文本
幕布斯7119047
2023-08-05 21:10:00