0

我想将 FreshChat 与我的 Ionic 3 应用程序集成。FreshChat 目前不支持cordova。有什么办法可以使用 FreshChat 网络信使。我尝试在我的 index.html 中导入脚本并尝试访问 window.fcSettings 但它没有用。提前致谢。

4

1 回答 1

0

window.fcSettings 用于异步加载。请使用下面的代码段。

if (window.fcWidget) {
   window.fcWidget.init(payload);
} else {
   window.fcSettings = payload;
}
于 2017-10-12T07:13:26.093 回答