Just upgraded to react-router-dom 4.0.0
. All my ponents are either regular class
es or fat arrows. They are all exported using export default ThatComponent
. Yet I'm getting this:
Uncaught Error: Element type is invalid: expected a string (for built-in ponents) or a class/function (for posite ponents) but got: undefined. You likely forgot to export your ponent from the file it's defined in. Check the render method of Router
.
// minimal showcase
import { BrowserRouter, Match, Miss } from 'react-router';
const Router = () => (
<BrowserRouter>
<div>
{/* both Match and Miss ponents below cause an error */}
<Match exactly pattern="/login" ponent={Login} />
<Match exactly pattern="/frontpage" ponent={Frontpage} />
<Match exactly pattern="/logout" render={() => (<div>logout</div>)} />
<Miss ponent={NoMatch} />
</div>
</BrowserRouter>
);
Why do the <Match>
ponents think the other ponents are undefined?
Just upgraded to react-router-dom 4.0.0
. All my ponents are either regular class
es or fat arrows. They are all exported using export default ThatComponent
. Yet I'm getting this:
Uncaught Error: Element type is invalid: expected a string (for built-in ponents) or a class/function (for posite ponents) but got: undefined. You likely forgot to export your ponent from the file it's defined in. Check the render method of Router
.
// minimal showcase
import { BrowserRouter, Match, Miss } from 'react-router';
const Router = () => (
<BrowserRouter>
<div>
{/* both Match and Miss ponents below cause an error */}
<Match exactly pattern="/login" ponent={Login} />
<Match exactly pattern="/frontpage" ponent={Frontpage} />
<Match exactly pattern="/logout" render={() => (<div>logout</div>)} />
<Miss ponent={NoMatch} />
</div>
</BrowserRouter>
);
Why do the <Match>
ponents think the other ponents are undefined?
- Can you share where you found the Match ponent? – Nevin Commented Mar 15, 2017 at 5:26
- Got it from here: frontend.turing.io/lessons/react-router-4.html – Michael Johansen Commented Mar 15, 2017 at 22:29
2 Answers
Reset to default 9In the final release of react-router
there is no Match
nor Miss
. You just need to use Route
. Also, you need to install and import react-router-dom
package to use BrowserRouter
(see React Router documentation).
To make your example work with minimal changes, you'd need to do the following:
// minimal showcase
import { BrowserRouter, Route, Switch } from 'react-router-dom';
const Router = () => (
<BrowserRouter>
<Switch>
<Route exact path="/login" ponent={Login} />
<Route exact path="/frontpage" ponent={Frontpage} />
<Route exact path="/logout" render={() => (<div>logout</div>)} />
<Route ponent={NoMatch} />
</Switch>
</BrowserRouter>
);
Please have a look at NoMatchExample in React Router docs to see how to and when to use Switch
.
Check source of react-router here: https://unpkg./[email protected]/index.js(also https://unpkg./[email protected]/index.js), There is no Match under it. Match maybe belong to other package.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743662430a4486419.html
评论列表(0条)