ReactJs 变量返回静态文本

你好,我在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.','')}}

但我收到错误。


幕布斯7119047
浏览 90回答 1
1回答

达令说

您应该使用函数而不是变量。假设您已经在utils.js中构建了一个函数实用程序.jsexport const getTestVariable = (value) => (  value === '1' ? '10' : value.replace('0.', ''))然后你可以在任何react文件中导入这个函数并使用它import { getTestVariable } from './utils.js'...const testVariable = getTestVariable(props.slices[2].transform)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript