当我点击3d模型的一部分时,我想打开一个附加的pdf。当我尝试的时候
host.exportDataObject({ cName: "MindSphere_GettingStarted.pdf", nLaunch: 2 });它抛出一个错误
TypeError: Invalid argument type.
Doc.exportDataObject:0:Doc undefined:Exec
===> Parameter cName.Line:发布于 2017-08-02 04:27:36
对象不能很好地在3D JavaScript引擎和主机之间传递。试试这个吧
host.exportDataObject("MindSphere_GettingStarted.pdf", null, false, 2);https://stackoverflow.com/questions/45346532
复制相似问题