Tag: 境界的移动平台

Angular 2可以使用Realm吗?

我想尝试使用Angular 2应用程序的Realm移动平台,但它看起来像我不能在Angular 2中使用Realm的Javascript版本。如果我能够在我的Angular 2应用程序中包括Realm,我该怎么去关于设置? 到目前为止,我已经成功运行了npm install –save realm并且已经有了我的应用程序模块,它试图导入该程序包并初始化所有内容。 import * as Realm from 'realm'; import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; Realm.Sync.User.login('http://local:9080', 'someUser', 'somePass', (e, user) => { if(e) { console.log(e); return; […]