我有以下代码:
import React, { Component } from 'react';
import '../styles/CountryDetails.css';
import { Link } from 'react-router-dom';
import { IconContext } from 'react-icons';
import { GoArrowRight } from 'react-icons/go';
import { FaPlane } from 'react-icons/fa';
class CountryDetails extends Component {
constructor(props) {
super(props);
this.state = {
countryData: props.countryData
}
}
render() {
console.log(this.state.countryData);
return (
<div>
<h1 className="display-3 text-center my-5">{this.state.countryData.countryClassification}</h1>
<div className="CountryDetail">
<div className="cards shadow-1 container">
<div className="row vertical-align">
<div className="col-2 text-center">
<IconContext.Provider value={{ color: '#A9A9A9', className: 'icon-hover icon-size'}}>
<div>
<FaPlane />
</div>
</IconContext.Provider>
</div>
<div className="col-8">
<h4>Airfare | Car Rental | Hotel Booking Site</h4>
{this.state.countryData.topAirfareCarRentalHotelBookingSite1 ? null : <span className="category-status">Under Construction...</span>}
</div>
这就是我得到的:
现在,我的 URL 链接正在显示http://localhost:8080/country/Afghanistan/
。当我单击矩形框时,我希望我的 URL 链接能够更新,http://localhost:8080/country/Afghanistan/topAirfareCarRentalHotelBookingSite1
并且它会显示一个不同的组件。
出于某种原因,我无法使这个 div 可点击,并且当我点击它时 URL 不会改变。我在使用这个代码吗
<Link to={`/country/${this.state.countryData.countryAndTerriority}/topAirfareCarRentalHotelBookingSite1`} />
错了还是放错了地方?
慕标5832272
三国纷争
ibeautiful
相关分类