如何将JSX组件推入Realm列表数据对象?

时间:2017-05-14 21:33:18

标签: react-native realm jsx realm-list

例如,假设我有这样的架构:

class ComponentSchema{};
ComponentSchema.schema = {
  name: 'Component',
  properties: {
    jsx: 'What goes here?'
  }
}

class ContainerSchema{};
ContainerSchema.schema = {
  name: 'JSXComponents',
  properties: {
    components: {type: 'list', objectType: 'Component'}
  }
}

有没有办法将组件推送到JSXComponents.components列表中,以便它可以存储代表的内容:

{0: {jsx: <Component/>}, 1: {jsx: <OtherComponent/>}}

如果JSX组件没有特定的数据类型,是否可能有解决方法?

0 个答案:

没有答案