我正在尝试将对讲机与 Ionic 4 集成。
我能找到的唯一文档是 Ionic 3... https://ionicframework.com/docs/native/intercom/
我知道它适用于 Ionic 3,而且我使用的是 Ionic 4,但这是我能找到的唯一文档。当我尝试实现它时,我得到了这个错误......
core.js:12501 ERROR Error: Uncaught (in promise): TypeError: Object(...) is not a function
TypeError: Object(...) is not a function
是不是不可能将对讲机与 Ionic 4 集成?这是我的代码(简化)...
import { Component } from '@angular/core';
import { Intercom } from '@ionic-native/intercom';
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
constructor(private intercom: Intercom) {
}
ShowIntercom() {
this.intercom.displayMessenger();
}
}
任何帮助将不胜感激。