React-Router在Go中如何使用子组件?

huangapple go评论108阅读模式
英文:

React-Router with child in Go how does it work?

问题

我正在尝试在Go服务器中使用react-router。

我进行了一些测试,但是我无法实现我想要的效果。

我的React组件:

var App = React.createClass({
	render: function(){
		return (
			<div>
			<h2>App</h2>
			<li><Link to="/page1">Page 1</Link></li>
			<li><Link to="/page2">Page 2</Link></li>
			</div>
		)
	}
})

var Page1 = React.createClass({
	render: function(){
		return (
			<div>
			<h2>Page 1</h2>
			<li><Link to="/page2">Page 2</Link></li>
			</div>

		)
	}
})

var Page2 = React.createClass({
	render: function(){
		return (
			<div>
			<h2>Page 2</h2>
			<li><Link to="/page1">Page 1</Link></li>
			</div>

		)
	}
})

我的React路由:

ReactDOM.render((<Router history={browserHistory}>
	<Route path="/" component={App}>
	  <Route path="page1" component={Page1} />
	  <Route path="page2" component={Page2} />
	</Route>
  </Router>), document.getElementById('app'))

我的Go服务器:

func Render(c web.C, w http.ResponseWriter, r *http.Request) {
	RenderHTMLPage(w, "index.html")
}

func main() {
	goji.Get("/page1", Render)
	goji.Get("/page2", Render)
	goji.Get("/", Render)
	goji.Serve()
}

我的问题是,当我在'App'组件中点击链接时,例如:

<li><Link to="/page1">Page 1</Link></li>

URL会改变,但实际组件仍然是App而不是Page1,所以URL改变了但组件没有改变。如果我直接加载URL,结果也是一样的。

有人可以帮助我吗?谢谢 React-Router在Go中如何使用子组件?

英文:

I'm trying to use react-router with a server in Go.

I did some tests but I can not do what I want.

My react components :

var App = React.createClass({
	render: function(){
		return (
			&lt;div&gt;
			&lt;h2&gt;App&lt;/h2&gt;
			&lt;li&gt;&lt;Link to=&quot;/page1&quot;&gt;Page 1&lt;/Link&gt;&lt;/li&gt;
			&lt;li&gt;&lt;Link to=&quot;/page2&quot;&gt;Page 2&lt;/Link&gt;&lt;/li&gt;
			&lt;/div&gt;
		)
	}
})

var Page1 = React.createClass({
	render: function(){
		return (
			&lt;div&gt;
			&lt;h2&gt;Page 1&lt;/h2&gt;
			&lt;li&gt;&lt;Link to=&quot;/page2&quot;&gt;Page 2&lt;/Link&gt;&lt;/li&gt;
			&lt;/div&gt;

		)
	}
})

var Page2 = React.createClass({
	render: function(){
		return (
			&lt;div&gt;
			&lt;h2&gt;Page 2&lt;/h2&gt;
			&lt;li&gt;&lt;Link to=&quot;/page1&quot;&gt;Page 1&lt;/Link&gt;&lt;/li&gt;
			&lt;/div&gt;

		)
	}
})

My react routing :

   ReactDOM.render((&lt;Router history={browserHistory}&gt;
    &lt;Route path=&quot;/&quot; component={App}&gt;
      &lt;Route path=&quot;page1&quot; component={Page1} /&gt;
      &lt;Route path=&quot;page2&quot; component={Page2} /&gt;
    &lt;/Route&gt;
  &lt;/Router&gt;), document.getElementById(&#39;app&#39;))

my go server :

func Render(c web.C, w http.ResponseWriter, r *http.Request) {
        RenderHTMLPage(w, &quot;index.html&quot;)
}

func main() {
        goji.Get(&quot;/page1&quot;, Render)
        goji.Get(&quot;/page2&quot;, Render)
        goji.Get(&quot;/&quot;, Render)
        goji.Serve()
    }

My problem is when i click on Link in 'App' Component, for example :

&lt;li&gt;&lt;Link to=&quot;/page1&quot;&gt;Page 1&lt;/Link&gt;&lt;/li&gt;

url changes like that

> http://localhost:8000/page1

But actual component is already App and not Page1, so url changes but not component.
And if i load directly url, i have the same result.

Does anyone help me ?
Thank's React-Router在Go中如何使用子组件?

答案1

得分: 1

这不是一个关于Go的问题,而是一个关于React的问题。你需要渲染App组件的子组件,以便其他两个组件能够显示出来。以下是从React Router文档中摘录的代码片段:

const routes = (
  <Route component={App}>
    <Route path="groups" component={Groups} />
    <Route path="users" component={Users} />
  </Route>
)

class App extends React.Component {
  render () {
    return (
      <div>
        {/* 这里将是<Users>或<Groups> */}
        {this.props.children}
      </div>
    )
  }
}

你需要在App组件中使用this.props.children来渲染子组件。

英文:

This isn't a go question, but a react question, you need to render the App component's children in order for the other two components to display, a la this code snippet taken from the docs for React Router (https://github.com/reactjs/react-router/blob/master/docs/API.md#props-2):

const routes = (
  &lt;Route component={App}&gt;
    &lt;Route path=&quot;groups&quot; component={Groups} /&gt;
    &lt;Route path=&quot;users&quot; component={Users} /&gt;
  &lt;/Route&gt;
)

class App extends React.Component {
  render () {
    return (
      &lt;div&gt;
        {/* this will be either &lt;Users&gt; or &lt;Groups&gt; */}
        {this.props.children}
      &lt;/div&gt;
    )
  }
}

huangapple
  • 本文由 发表于 2016年3月30日 03:23:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/36293338.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定