"超级表达式必须为null或函数,而不是对象"错误

时间:2016-05-19 15:46:43

标签: react-native realm react-native-android

我使用https://github.com/realm/realm-js/blob/master/examples/ReactExample/components/realm.js中的示例代码。

'use strict';

import Realm from 'realm';

class Todo extends Realm.Object {}
Todo.schema = {
    name: 'Todo',
    properties: {
        done: {type: 'bool', default: false},
        text: 'string',
    },
};

class TodoList extends Realm.Object {}
TodoList.schema = {
    name: 'TodoList',
    properties: {
        name: 'string',
        items: {type: 'list', objectType: 'Todo'},
    },
};

export default new Realm({schema: [Todo, TodoList]});

当我跑步时,我得到了

  

超级表达式必须为null或函数,而不是对象

错误。

enter image description here

我正在使用

"react": "^0.14.8",
"react-native": "^0.25.1",
"realm": "^0.12.0",

我该如何解决这个问题?谢谢你的任何提示!

1 个答案:

答案 0 :(得分:0)

这已在最新版本0.13.0中修复,该版本即将发布。您现在可以通过在package.json

中将版本设置为0.13.0-rc来尝试候选版本