javascript - Render React element from object value - Stack Overflow

I want to create an object:import React from "react";import { Registration } from "...

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 0
Add a ment  | 

2 Answers 2

Reset to default 6

Registration 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>
  }
}
  1. 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.

  1. 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 to Registration, the ponent class itself, not an instance of Registration, <Registration />.

So, instead, this is what p should be:

p: Registration

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743694805a4491575.html

相关推荐

  • javascript - Render React element from object value - Stack Overflow

    I want to create an object:import React from "react";import { Registration } from "...

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信