1

将集会应用程序嵌入到 Confluence 文档中的最佳方式是什么?

我尝试在 {html} 宏之间粘贴我的代码,但它不起作用

{html}

<!DOCTYPE html>
<html>
<head>
<title>Grid Example</title>

<script type="text/javascript" src="https://rally1.rallydev.com/apps/2.0p4/sdk.js"></script>

<script type="text/javascript">
    Rally.onReady(function() {
        Ext.define('CustomApp', {
            extend: 'Rally.app.App',
            componentCls: 'app',

            launch: function() {
                ...
                ...
            }
        });
    Rally.launchApp('CustomApp', {
            name: 'Grid Example'
        });
    });
</script>
<style type="text/css">
</style>
</head>
<body></body>
</html>

{html}

上面的代码直接打开时工作正常,但粘贴到 confluence 的 {html} 宏中时不显示任何内容。(我在另一个标签中登录了集会)

4

1 回答 1

1

一种解决方法是在服务器上托管 html 页面并将其包含在汇合中的 {iframe} 宏中。但是,某些浏览器可能存在跨域相关的安全问题。

最后我决定不在我的汇合页面中呈现内容。我只是在服务器上托管了 html 页面,并在我的 confluence 页面中添加了指向它的链接。

于 2013-02-06T22:54:00.730 回答