【发布时间】:2017-09-22 09:18:48
【问题描述】:
我想将 FreshChat 与我的 Ionic 3 应用程序集成。 FreshChat 目前不支持cordova。有什么办法可以使用 FreshChat 网络信使。我尝试在我的 index.html 中导入脚本并尝试访问 window.fcSettings 但它没有用。提前致谢。
【问题讨论】:
标签: angular cordova ionic-framework phonegap freshdesk
我想将 FreshChat 与我的 Ionic 3 应用程序集成。 FreshChat 目前不支持cordova。有什么办法可以使用 FreshChat 网络信使。我尝试在我的 index.html 中导入脚本并尝试访问 window.fcSettings 但它没有用。提前致谢。
【问题讨论】:
标签: angular cordova ionic-framework phonegap freshdesk
window.fcSettings 用于异步加载。请使用下面的sn-p。
if (window.fcWidget) {
window.fcWidget.init(payload);
} else {
window.fcSettings = payload;
}
【讨论】: