admin管理员组文章数量:1344461
I want to create an object:
import React from "react";
import { Registration } from "../../";
const RouteObj = {
Registration: {
route: "/registration",
p: <Registration />
}
};
export default RouteObj;
And then, in a second file call:
import React from 'react';
import RouteObj from ...
class Thing extends React.Component{
render() {
<RouteObj.Registrationp />
}
}
When trying this, I get the error:
React.createElement: 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.
Is it possible to render React ponents in this way?
I want to create an object:
import React from "react";
import { Registration } from "../../";
const RouteObj = {
Registration: {
route: "/registration",
p: <Registration />
}
};
export default RouteObj;
And then, in a second file call:
import React from 'react';
import RouteObj from ...
class Thing extends React.Component{
render() {
<RouteObj.Registration.p />
}
}
When trying this, I get the error:
React.createElement: 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.
Is it possible to render React ponents in this way?
Share Improve this question edited Nov 7, 2017 at 14:31 Ben Irving asked Nov 7, 2017 at 13:24 Ben IrvingBen Irving 4931 gold badge6 silver badges21 bronze badges 02 Answers
Reset to default 6Registration
is already a tag (a ponent), that's why I guess you have to use curly brackets instead.
import React from 'react';
import RouteObj from ...
class Thing extends React.Component{
render() {
<div>
{RouteObj.Registration.p}
</div>
}
}
- You've got to export
RouteObj
correctly, as the default export.
Thus, add this after you declare RouteObj
:
export default RouteObj;
You were trying to use something you didn't export, as the error says. It was thus undefined.
- You can't create an element from an element, you need to create an element from a ponent class. So instead, you have to set
RouteObj.p
toRegistration
, the ponent class itself, not an instance ofRegistration
,<Registration />
.
So, instead, this is what p
should be:
p: Registration
本文标签: javascriptRender React element from object valueStack Overflow
版权声明:本文标题:javascript - Render React element from object value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694804a2523322.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论