我正在尝试在网页中实现apache超集仪表板。 有人知道如何实现吗?
答案 0 :(得分:1)
保持您提到的iframe广告代码行。
$('.trigger_a_element').click(function() {
if ($('.this_element_will_expand').css('width') == 0)
$('.this_element_will_expand').css('width', '100%');
else
$('.this_element_will_expand').css('width', '');
});
并检查superset_config.py文件。
<iframe src="linkToYourDashBoard?standalone=true"></iframe>
将行更改为
HTTP_HEADERS = {'X-Frame-Options': 'SAMEORIGIN'}
或
HTTP_HEADERS = {'X-Frame-Options': 'ALLOWALL'}
别忘了将superset_config.py文件添加到您的python路径中。
答案 1 :(得分:0)
首先,您需要使用这些选项更新公共角色。
can explore json on Superset, can dashboard on Superset, all database access on all_database_access
第二,将仪表板嵌入HTML
<iframe src="localhost:8088/superset/dashboard/5/?standalone=true"></iframe>