1
  • 我正在尝试在我的代码库中包含对讲 npm 包
  • 但我得到以下错误。
  • 你们能告诉我如何解决它。
  • 在下面提供我的代码片段

app/app.component.ts(192,17):错误 TS2339:“对讲”类型上不存在属性“init”。

https://www.npmjs.com/package/ng-intercom

ngOnInit(): void {

    this.intercom.init({
        app_id: "mobilecode",
        // Supports all optional configuration.
        widget: {
            "activator": "#intercom" 
        }
    });
  • 在这里提供整个代码,因为我的代码库很大

https://hastebin.com/nafocafaze.js

4

2 回答 2

1

我通过使用 update() 而不是 init() 让它工作(在 1.0.0-beta.11 中)。我所做的是更改 ngOnInit() 中的行

this.intercom.init({

this.intercom.update({

整个块将如下所示:

ngOnInit() {
  this.intercom.update({
    app_id: <app_id>,
    // Supports all optional configuration.
    widget: {
      "activator": "#intercom"
    }
  });
}

希望这可以帮助!

(另一个快速修复是降级到 init() 工作的 1.0.0-beta.10。)

于 2018-01-26T13:21:24.247 回答
1

在您的应用程序模块中:

import { IntercomModule } from 'ng-intercom';

@NgModule({
  imports: [
    ...
    IntercomModule.forRoot({
      appId: <your_app_id>, // from your Intercom config
      updateOnRouterChange: true // will automatically run `update` on router event changes. Default: `false`
    })
  ...
  ]
})
于 2018-01-17T10:14:53.317 回答