You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const customUpload = (file: any, self: any) => { return new Promise<any>((resolve) => { console.log('httpRequest', file); // Here you would typically make an API call // For now, just resolve the promise with the file resolve(file); }); };
代码如上,custom-action属性绑定的代码未被触发
The text was updated successfully, but these errors were encountered: