问题源于:wexbim文件CORS policy HTTP404
IE Edge 提示:
HTTP404: 找不到 - 服务器尚未找到与请求的 URI (统一资源标识符)匹配的任何内容。
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。火狐提示
uncaught exception: Failed to fetch binary data from server. Server code: 404. This might be due to CORS policy of your browser if you run this as a local file
xbim团队在tutorials中提示:
If it still doesn't work check your webserver is serving wexBIM file as a
static content.
解决方案:
需要配置 web config文件
<system.webServer>
<staticContent>
<mimeMap fileExtension=".wexbim" mimeType="application/octet-stream" />
</staticContent>
</system.webServer>

更多精彩