admin管理员组文章数量:1341741
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.
本文标签: javascriptGetting undefined components in React Router v4Stack Overflow
版权声明:本文标题:javascript - Getting undefined components in React Router v4 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743662430a2518173.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论