我们使用 Recast.AI 为我们的本地 ERP 开发了聊天机器人功能。
基本上,我们使用以下代码在 On-Premise Fiori 启动板上部署了一个插件;但是,Fiori 启动板在聊天机器人启动后冻结,我们无法在 Fiori 启动板上执行任何操作。SAP Note 2544600 中的选项对我们没有帮助。任何想法,可能是什么问题?
问候,
卡兰
sap.ui.define([
"sap/ui/core/UIComponent",
], function (UIComponent) {
"use strict";
return UIComponent.extend("com.abc.chatbot.Component", {
/**
* The component is initialized by UI5 automatically during the startup of the app and calls the init method once.
* @public
* @override
*/
init: function () {
// call the base component's init function
UIComponent.prototype.init.apply(this, arguments);
var renderer = sap.ushell.Container.getRenderer("fiori2");
if (!document.getElementById("recast-webchat")) {
var s = document.createElement("script");
s.setAttribute("id", "recast-webchat");
s.setAttribute("src", "https://cdn.recast.ai/webchat/webchat.js");
//document.body.appendChild(s);
if (document.body != null) {
document.body.appendChild(s);
}
}
s.setAttribute("channelId", "abc");
s.setAttribute("token", "xyz");
}
});
});
问题在于 appendChild;这使启动板无响应。不确定有什么替代方法,因为我尝试了各种方法,例如创建 div、片段。