0
シミュレーションを消去/再起動するたびに上記のエラーメッセージが表示されます。私が 'const'を解析して実際のログインに入ることを可能にするダミーのユーザーオブジェクトを挿入する方法はありますか?レルム:ユーザーは 'オブジェクト'タイプである必要があります(未定義)
import React from 'react';
import { StyleSheet, AppRegistry, TextInput, Text, View, Alert, } from 'react-native';
import Realm from 'realm';
logBookSchema = {schema: [{
name: 'LogBook',
properties: {
logNum: 'int',
},
}]
}
class LogBook extends Realm.Object {}
const realm = new Realm({sync: {user: Realm.Sync.User.current, url: 'realm://localhost:9080/~/logbook',error: err => alert(err)},logBookSchema});
export default class App extends React.Component {
render() {
Realm.Sync.User.login('http://localhost:9080', '[email protected]', 'test').then (user => {
Realm.open({logBookSchema, sync: {user: user, url: 'realm://localhost:9080/~/logbook',error: err => alert(err)}});
});
return (
<View><Text></Text><Text>Logged in</Text></View>
)
}
}