は新しいチームに入社し、スニペットの下が見つかりました:Reduxに反応すると、このスニペットはどういう意味ですか?
const bookListContainer = (location, cb) => {
require.ensure([], require => {
cb(null, require('somepath').default)
}, 'bookList')
}
<Route path="/" component={App}>
<Route path="home" component={HomeComponent} />
<Route path="bookList/:bookId" getComponent={bookListContainer} />
</Route>
component
とgetComponent
の違いは何ですか? bookListContainer
については、それは正確に何ですか? require.ensure()
おかげ