如何在 React.Js 内部渲染中使链接可点击?
Posted
技术标签:
【中文标题】如何在 React.Js 内部渲染中使链接可点击?【英文标题】:How to make a link clickable in React.Js inside render? 【发布时间】:2019-05-09 10:12:24 【问题描述】:如果我单击链接,它将转到主页。我只想关注链接。 我的代码是这样的
<tr>
<td>IPFS Hash # stored on Eth Contract</td>
<td><a href= "#">"https://gateway.ipfs.io/ipfs/"+this.state.ipfsHash</a></td>
</tr>
【问题讨论】:
【参考方案1】:React 添加点击和重定向的方式是使用 react-router 提供的 Link-
组件内部
import Link from 'react-router-dom;
class Parent extends React.Component
render()
<div><Link to="/home">Click here to go back to home page</Link></div>
在路由文件中
import React from 'react';
import BrowserRouter as Router,Switch from 'react-router-dom;
export class RoutingClass extends React.Component
render()
<Router>
<Switch>
<Route exact path="/home" component=Home />
</Switch>
</Router>
【讨论】:
【参考方案2】:我希望我能理解你的问题,我想你要找的是
<tr>
<td>IPFS Hash # stored on Eth Contract</td>
<td><a href="https://gateway.ipfs.io/ipfs/"+this.state.ipfsHash>Click here to go to home page</a></td>
</tr>
【讨论】:
以上是关于如何在 React.Js 内部渲染中使链接可点击?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 swift 中使自定义 UITableViewCell 中的链接可点击
Bootstrap 3:如何在导航栏中使下拉链接的头部可点击
如何在我绘制文本的自定义视图中使链接、电话号码可点击(与 textview 中的行为相同)?