将汇总应用程序嵌入汇合文档的最佳方法是什么?
我尝试在{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}宏中粘贴时不会显示任何内容。 (我在另一个标签中登录了集会)
答案 0 :(得分:1)
解决方法是在服务器上托管html页面并将其包含在汇编的{iframe}宏中。但是,某些浏览器可能存在跨域相关的安全问题。
最后我决定不在我的汇合页面中呈现内容。我刚刚在服务器上托管了html页面,并在我的汇合页面中添加了一个链接。