Forge Viewer SVF2 PowerBI 未加载

Forge Viewer SVF2 PowerBI not loading

我正在尝试将 SVF2 从 ACC 加载到 Power BI,但未加载几何图形。

我正在使用以下凭据选项:

const options = {
            env: 'AutodeskProduction2',
            api: 'streamingV2',
            accessToken: token,
        }

查看器卡住了,如图所示:

并且在控制台中我得到了这个错误(我不确定它是否链接到伪造)

Uncaught DOMException: Failed to execute 'open' on 'IDBFactory': access to the Indexed Database API is denied in this context.
at LocalDbCache.open (blob:null/a4675167-582d-4db2-8834-6a5f9e63ee2e:25855:31)
at Object.doInitGeomWorker [as doOperation] (blob:null/a4675167-582d-4db2-8834-6a5f9e63ee2e:33375:18)
at WorkerMain.dispatch (blob:null/a4675167-582d-4db2-8834-6a5f9e63ee2e:32956:14)
at blob:null/a4675167-582d-4db2-8834-6a5f9e63ee2e:48870:55

如果我将我的选项切换为使用 SVF(1),它可以正常工作并且几何图形加载良好,但 dbid 不匹配。

const options = {
            env: 'AutodeskProduction',
            api: 'derivativeV2',
            accessToken: token,
        }

Power BI 似乎禁用了 IndexedDB API。您可能需要咨询 Power BI 社区,但您可以尝试通过将此查询字符串参数 disableIndexedDb=true 附加到您的查看器应用程序 URL 来禁用 svf2 缓存,看看它是否有帮助。例如http://localhost:3000?disableIndexedDb=true

关于 dbid 不匹配,您是否在使用 MD GET properties API?如果是,请在调用以下模型导数时包含此额外请求 header x-ads-derivative-format: fallback API.