将集会应用程序嵌入到 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} 宏中时不显示任何内容。(我在另一个标签中登录了集会)