在查看器中加载BIM文件时出现问题

时间:2019-08-14 13:10:54

标签: autodesk-forge

在Autodesk Forge Viewer中查看文件时,出现一些错误,例如 •“无法读取未定义的属性'setEndpoint'” •“ doc.getRootItem不是函数” 并且可以在硬重新加载(Ctrl + Shift + R)页面后查看。有时,即使在硬重装并清除浏览器缓存后,同样的错误也会再次出现。

var options = {
    env: 'AutodeskProduction',
    accessToken: getAccessToken() //Method to get access token- no errors here
};
var documentId = 'urn:' + urn;
Autodesk.Viewing.Initializer(options, function onInitialized() {
    Autodesk.Viewing.Document.load(documentId, onDocumentLoadSuccess, onDocumentLoadFailure);
});

//Autodesk.Viewing.Document.load - success function.
function onDocumentLoadSuccess(doc) {
    setTimeout(function() {
        debugger;
    }, 5000);

//Error is thrown in the line below.                
    var viewables = Autodesk.Viewing.Document.getSubItemsWithProperties(doc.getRootItem(), {
        'type': 'geometry'
    }, true); //throws error on calling doc.getRootItem()

    if (viewables.length === 0) {
        console.error('Document contains no viewables.');
        return;
    }
    // Choose any of the avialble viewables
    var initialViewable = viewables[0];
    var svfUrl = doc.getViewablePath(initialViewable);
    var modelOptions = {
        sharedPropertyDbPath: doc.getPropertyDbPath()
    };

    var viewerDiv = document.getElementById('divViewer');
    viewer = new Autodesk.Viewing.Private.GuiViewer3D(viewerDiv);
    viewer.start(svfUrl, modelOptions, onLoadModelSuccess, onLoadModelError);
}

1 个答案:

答案 0 :(得分:1)

升级到Viewer v7后,请使用doc.getRoot()-已弃用doc.getRootItem()

 NOP_VIEWER.loadDocumentNode(doc, doc.getRoot().getDefaultGeometry());

请参阅实时示例here和向v7 here的迁移指南。