我看到很多人在React native中创建路由映射,类似于下面的内容:
if (route.id === 'Blah') {
return (<Blah prop1={this.method} prop2={this.other method} />);
} else if (route.id === 'OtherView') {
return (<OtherView prop1={this.method} />);
}
这可以迅速成为许多代码行,我想做这样的事情:
return (React.createElement(route.id, {propsToPass}));
这在React Native中不起作用,因为显然&#39;字符串不允许作为React Native中的第一个参数,因为这些字符串用于常规React中的html标记。&#39;
那怎么办呢?如果我提供ReactClass作为第一个参数,或者使用eval(route.id)(但我知道这可能是危险的),我得到了它。
如何使用字符串创建React Native元素?
答案 0 :(得分:3)
您可以设置允许的组件命名空间:
var routeComponents = {
"Blah": Blah,
"OtherView": OtherView
}
if(routeComponents[route.id]) {
return React.createElement(routeComponents[route.id], {propsToPass});
} else {
// Error
}