是否可以配置 Converse.js 以将其框呈现到自定义 div 容器中,而不是将它们添加到页面正文中?

最佳答案

是的,您可以通过编写 converse.js plugin 来实现此目的,在其中您可以覆盖 ChatBoxViewinsertIntoPage 方法。

请参阅我上面链接的插件文档。简而言之,它看起来像这样:

// The following line registers your plugin.
converse_api.plugins.add('myplugin', {

    overrides: {
        // If you want to override some function or a Backbone model or
        // view defined inside converse, then you do that under this
        // "overrides" namespace.
        ChatBoxView: {
            insertIntoPage: function (type, status_message, jid) {
                // XXX Your custom code comes here.
                // The standard code looks as follows:
                this.$el.insertAfter(converse.chatboxviews.get("controlbox).$el);
                return this;
            }
        },
    }

更新:由于 converse.js 的最新版本,覆盖的方法改为 _ensureElement 而不是 insertIntoPage

10-08 16:03