1

我们创建了一个同时具有桌面版本和移动版本的 PowerBI 报告。当我们在输入正确信息后在以下示例站点进行测试时,它会正确显示桌面和 pone 视图。

https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html

但是当我们在手机上打开网站时,仍然显示的是桌面版的报表。powerbi.js 文件使用的文件版本是“powerbi-client v2.5.1”。

下面提供了使用的 HTML 和 javascript 我们还附加了带有嵌入报告 URL 的“&isMobile=true”。我们是否缺少任何参考来显示移动版本。

<html>
<head>
</head>
<body>
  <div id="reportContainer" style="width: 100%; height: 610px" aria-atomic="True" aria-multiline="True" aria-multiselectable="True" aria-orientation="vertical">
  </div>
  <script src="~/Scripts/powerbi.js"></script>

  <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>

  <script>
    $(document).ready(function() {    
      var txtAccessToken = "@Model.EmbedToken.Token";   
      var txtEmbedUrl = "@Html.Raw(Model.EmbedUrl)";
      var txtEmbedReportId = "@Model.Id";        
      var tokenType = $('input:radio[name=tokenType]:checked').val();
   
      var models = window['powerbi-client'].models;
  
      var permissions = models.Permissions.All;

      var config = {
        type: 'report',
        tokenType: tokenType == '0' ? models.TokenType.Aad : models.TokenType.Embed,
        accessToken: txtAccessToken,
        embedUrl: txtEmbedUrl,
        id: txtEmbedReportId,
        permissions: permissions,
        settings: {
          layoutType: models.LayoutType.MobilePortrait
        }
      };

      // Get a reference to the embedded report HTML element

      var embedContainer = $('#reportContainer')[0];

      // Embed the report and display it within the div container.
      var report = powerbi.embed(embedContainer, config);

      // Report.off removes a given event handler if it exists.
      report.off("loaded");

      // Report.on will add an event handler which prints to Log window.
      report.on("loaded", function() {
        Log.logText("Loaded");
      });

      report.on("error", function(event) {
        Log.log(event.detail);

        report.off("error");
      });

      report.off("saved");
      report.on("saved", function(event) {
        Log.log(event.detail);
        if (event.detail.saveAs) {
          Log.logText('In order to interact with the new report, create a new token and load the new report');
        }
      });
    });
  </script>
</body>
</html>

4

1 回答 1

0

问题已解决。我在配置的 embededUrl 属性中附加了 isMobile=true 。

报告.EmbedUrl = 报告.EmbedUrl + "&isMobile=true";

我们不需要显式附加“&isMobile=true”,这个参数会在 iframe url 中自动更新。

于 2018-05-23T12:30:58.743 回答