keyshot如何导出可交互的3d模型?
软件: keyshot
// 复制成功后调用后台方法
fetch('/jump', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',

},
body: new URLSearchParams({
'url': downloadUrl
})
}).then(response => {
if (response.ok) {
console.log('后台调用成功');
}
}).catch(error => {
console.error('后台调用失败:', error);
});
fetch('/jump', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',

},
body: new URLSearchParams({
'url': downloadUrl
})
}).then(response => {
if (response.ok) {
console.log('后台调用成功');
}
}).catch(error => {
console.error('后台调用失败:', error);
});