因此,我正在为React应用程序开发一个博客页面。该页面正在从CMS加载数据,并且博客文章的内容是原始html,我在页面上使用以下内容呈现:
<div dangerouslySetInnerHTML={{__html: this.state.content}} />
但是我张贴在帖子中的任何链接
<a href='/'>Home Page</a>
不要使用React Router,而是触发重新加载页面。
有没有一种方法可以解决此问题,而不必解析HTML并将<a>
标记替换为<Link>
?
答案 0 :(得分:7)
您可以在HTML容器上使用点击处理程序来捕获点击。如果点击来自<a>
标签(或子标签),则可以阻止默认操作,并使用href
。
在这种情况下,您可以使用react-router的withRouter
获取history
对象,并使用push
方法来通知路由器。您还可以编辑URL或以其他方式对其进行操作。
示例(使用代码时取消注释并删除控制台):
// import { withRouter } from 'react-router-dom'
class HTMLContent extends React.Component {
contentClickHandler = (e) => {
const targetLink = e.target.closest('a');
if(!targetLink) return;
e.preventDefault();
console.log(targetLink.href); // this.props.history.push(e.target.href)
};
render() {
return (
<div
onClick={this.contentClickHandler}
dangerouslySetInnerHTML={{__html: this.props.content}}
/>
);
}
}
// export default withRouter(HTMLContent);
const content = `<div>
<a href="http://www.first-link.com">Link 1</a>
<a href="http://www.second-link.com"><span>Link 2</span></a>
</div>`;
ReactDOM.render(
<HTMLContent content={content} />,
demo
);
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<div id="demo"></div>