0

我已经尝试过使用 iFrame 来集成电路,但 Circuit 不允许这样做。

<iframe width="1280" height="749" src="http://circuitsandbox.net/#/"></iframe>

这给出了网站拒绝连接的错误。

有谁知道如何在不自己构建完整应用程序的情况下实现相同的功能?

4

1 回答 1

0

不,正如您指出的那样,Circuit 不允许在 iFrame 中运行。电路是一个大型应用程序,有几个面板,无论如何在 iframe 中都不理想。

有几个示例说明了如何使用 JS SDK 轻松地重新创建某些功能。请参阅https://circuit.github.io/jssdk.html上的小型单个示例,或https://github.com/circuit/circuit-sdk-app上的完整应用程序。

或者另一个不错的选择是使用 Circuit Web 组件 ( https://www.npmjs.com/package/@unify/circuit-web-components ) 或 Vue 组件 ( https://www.npmjs.com/package/ @unify/vue-components)。

例如,使用 Circuit Web 组件,您只需几行代码即可创建具有视频会议功能的应用程序:

<circuit-call-button
    video
    domain="circuitsandbox.net"
    clientId="f06c51a30f0d4eb6acc05829c3e86266"
    target="ce4417ee-d59a-4d37-b486-52e6cef1ac35"
    callingText="Starting..."
    joinText="Join conference">Start conference</circuit-call-button>
<circuit-call-stage></circuit-call-stage>

来自https://github.com/circuit/circuit-web-components/blob/master/examples/videoConference.html的代码

或根据https://github.com/circuit/circuit-web-components/blob/master/examples/chat.html使用电路对话列表和电路聊天 Web 组件的聊天应用程序

于 2020-06-30T11:52:50.920 回答