尝试通过运行fin.Platform.Layout.init()
(在客户端)来初始化我的 openfin 应用程序会引发错误:The targeted Platform is not currently running. Listen for an application-started event for the given Uuid.
. 我找不到有关此错误实际含义的任何文档/参考。
我正在使用 "hadouken-js-adapter": "^17.54.32"; 我使用以下 WindowConfig 启动我的应用程序:
{
name: 'default-app',
url: `http://localhost:5555`,
uuid: 'default-app-uuid',
autoShow: true,
nonPersistent : true,
frame: false,
cornerRounding: {
width: 5,
height: 5,
},
layout: {
content: [{
"type": "component",
"componentName": "view",
"componentState": {
"processAffinity": "ps_1",
"url": "https://cdn.openfin.co/embed-web/chart.html"
}
}]
}
}
窗口打开,openfin 应用其内部样式,但在 init 进程中途失败。有任何想法吗?