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

从函数返回带有 html 的字符串以在 JSX 中使用

从函数返回带有 html 的字符串以在 JSX 中使用

qq_笑_17 2023-05-11 15:57:27
我是 JSX/React 的新手,如果有人问过这个问题,请先向我道歉,请让我参考这个问题。为了删除一些内联代码,我创建了一个函数,它返回要在模板/JSX 中显示的值,这工作正常,除非它需要返回一个字符串 + 一个元素(链接元素),该函数如下所示:let displayText = () => {   let supportLink = <Link component={RouterLink} to={`/customers/${customer.id}/support`}>support</Link>         return `We are unable to do something. If you have further questions, please contact our ${supportLink}`  };实际上这看起来像We are unable to do something. If you have further questions, please contact our [object, object]如何在我的字符串中包含该元素并使其正确显示?
查看完整描述

1 回答

?
侃侃无极

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

您正在返回一个模板字符串,因此supportLink被强制转换为字符串,因此显示[object, object]


您需要修改 return 语句以返回ReactElement如下所示:


let displayText = () => {

   let supportLink = <Link component={RouterLink} to={`/customers/${customer.id}/support`}>support</Link>

       

  return (<>

    We are unable to do something. If you have further questions, please contact our {supportLink}

  </>)

};


查看完整回答
反对 回复 2023-05-11
  • 1 回答
  • 0 关注
  • 143 浏览
慕课专栏
更多

添加回答

举报

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