为了账号安全,请及时绑定邮箱和手机立即绑定

在 React Native-JavaScript 中将布尔值转换为字符串

在 React Native-JavaScript 中将布尔值转换为字符串

米琪卡哇伊 2023-03-03 10:19:22
所以,我在做一个 React Native 项目,我有一个这样的复选框:      import ARCheckBox from '@react-native-community/checkbox';      .............      <View style={styles.row}>      <Text style={styles.label}>Insured Interest</Text>         <Text>Section IV - AutomobileLiability</Text>         <ARCheckBox          value={this.state.arCBValue3}          onValueChange={value =>            this.setState({              arCBValue3: value,            })          }        />      </View>这是我的 .js 输出:import { style } from "./../../../reports/ARCssPdf";export const arGenerateFileHtml = values => {  return`  ${style}  ${generateNameSectionHtml(values)}`;};const generateNameSectionHtml = name =>`<html><head></head>    <br/><body>  <div>      <table style="width:450px">      <tr>      <td> Section IV - AutomobileLiability</td>      <th> : </th>      <th> ${name.arCBValue3}</th> //This is the output      </tr>  </table></div></body></html>`但我得到的结果是这样的:Section IV - AutomobileLiability : true/false虽然我想要的结果是这样的:Section IV - AutomobileLiability : Yes/No我如何获得该结果?我试过使用replaceFunction 将 true/false 替换为 Yes/No,但它不起作用。我知道我必须先做一个函数,但我不知道怎么做。任何帮助将不胜感激。谢谢
查看完整描述

2 回答

?
慕桂英546537

TA贡献1848条经验 获得超10个赞

你试过了吗:

   <th> ${name.arCBValue3 ? 'Yes':'No'}</th>


查看完整回答
反对 回复 2023-03-03
?
子衿沉夜

TA贡献1828条经验 获得超3个赞

import {

  style

} from "./../../../reports/ARCssPdf";


export const arGenerateFileHtml = values => {

  return `

  ${style}

  ${generateNameSectionHtml(values)}`;

};

const replacer = value => value ? "Yes" : "No"

const generateNameSectionHtml = name =>

  `<html>

<head>

</head>

    <br/>

<body>

  <div>

      <table style="width:450px">

      <tr>

      <td> Section IV - AutomobileLiability</td>

      <th> : </th>

      <th> ${replacer(name.arCBValue3)}</th> //This is the output

      </tr>

  </table>

</div>

</body>

</html>`

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>


查看完整回答
反对 回复 2023-03-03
  • 2 回答
  • 0 关注
  • 131 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信