Tableau 嵌入PHP网页里
时间: 2023-05-30 16:01:30 浏览: 276
要将 Tableau 嵌入 PHP 网页中,可以使用 Tableau 的 JavaScript API。以下是基本步骤:
1. 在 Tableau Server 或 Tableau Online 上创建或打开报表,并将它们发布到服务器上。
2. 在 PHP 网页中引入 Tableau 提供的 JavaScript API:
```html
<script src='https://tableau_server_address/javascripts/api/tableau-2.min.js'></script>
```
3. 创建一个 div 容器来放置 Tableau 报表:
```html
<div id='tableauViz'></div>
```
4. 在 PHP 网页中编写 JavaScript 代码,使用 Tableau JavaScript API 载入报表并将其嵌入到 div 容器中:
```javascript
var containerDiv = document.getElementById('tableauViz');
var url = "https://tableau_server_address/views/your_view_name/your_view?:showVizHome=no";
var options = {
width: '100%',
height: '600px',
hideTabs: true,
hideToolbar: true,
onFirstInteractive: function () {
console.log("Tableau viz loaded");
}
};
var viz = new tableau.Viz(containerDiv, url, options);
```
5. 将上述 JavaScript 代码保存到 PHP 网页中,并通过浏览器访问该网页即可看到 Tableau 报表。
阅读全文