import React, { PropTypes } from 'react';
import { Link, browserHistory } from 'react-router';
class Chatbox extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
componentDidMount() {
}
render() {
return (
<div className="content_block">
<Link to='/chatbox'></Link>
</div>
)
}
}
export default Chatbox;
我正在该渲染区域中渲染chatbox组件,我需要运行其他应用程序url。
我正在使用下面的路线,但它重定向到该位置,而不是在chatbox渲染区域中渲染。
<Route path='/chatbox' component={() => window.location = 'http://localhost:5000/chat'}/>
如何在组件渲染区域中浏览“ http://localhost:5000/chat” URL。
最佳答案
您可以使用iframe在您的内部渲染外部网站。
render() {
return (
<div className="content_block">
<iframe src="http://localhost:5000/chat" width="640" height="480" align="left">Not supported</iframe>
</div>
);
}