Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

autodesk forge - Load model by headless viewer

I have tried setting up Forge Viewer in headless mode using the following link: https://forge.autodesk.com/en/docs/viewer/v6/tutorials/headless.

I have hard-coded the URN and the access token but the model is not displaying.

Please provide any sample source code to load the model.

question from:https://stackoverflow.com/questions/65888875/load-model-by-headless-viewer

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here's a couple of tips:

  1. Check the browser console. Perhaps the URN or the access token is incorrect, which is why the model does not load.

  2. The link you're working with is for an older version of Forge Viewer (v6). I'd suggest using version 7.*. Try using this basic app as a starting point: https://github.com/petrbroz/forge-basic-app, and replace this line of code:

const viewer = new Autodesk.Viewing.GuiViewer3D(document.getElementById('preview'));

with

const viewer = new Autodesk.Viewing.Viewer3D(document.getElementById('preview'));

With this I've been able to load a model with a headless viewer:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...