web-dev-qa-db-ja.com

レンダリング内のReact.Jsでリンクをクリック可能にする方法は?

レンダリング内のReact.Jsでリンクをクリック可能にする方法は?リンクをクリックするとホームページに移動します。リンクだけをフォローしたい。私のコードはこのようになります

              <tr>
                <td>IPFS Hash # stored on Eth Contract</td>

                <td><a href= "#">{"https://gateway.ipfs.io/ipfs/"+this.state.ipfsHash}</a></td>
              </tr>
4
shantanu rahut

私はあなたの質問を理解したことを願っています、あなたが探しているのは

  <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>
1
Morhaf Shamia

Reactクリックとリダイレクトを追加する方法は、react-router-によって提供されるリンクを使用することです

コンポーネントの内部

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>
    }
}
0
Erick