antd upload上傳獲取檔案寬高

2021-10-08 22:18:17 字數 681 閱讀 5742

專案新加的需求,需要判斷上傳的寬高,查了一下antd-upload元件貌似不支援這個查詢,因此需要使用外部的api,直接上**:beforeupload 方法

handlebeforeupload = async (file, filelist) =>  = this.component.props;

const isinrange = ((file.size > (fileminsize * 1024 * 1024)) && (file.size < (filemaxsize * 1024 * 1024)));

let istruetype = true,isfilewh = true;//型別,尺寸

return new promise((resolve, reject) =>);}}

//校驗大小

if (!isinrange) );

}//校驗寬高

/*********************************/

if(fileminwh && filemaxwh));

reject();

}else

};};

/**********************************/

}else

})};

這樣這個功能就可以完美的解決了,*包著的**是最主要的。

Server App Retrofit上傳檔案

最近琢磨自己封裝一下retrofit庫,基本的get,post都搞定了。在弄上傳的時刻遇到了乙個坑,就是上傳檔案總提示無法放到指定的資料夾,提示move uploaded file folderpath failed to open stream permission denied。雖然寫的是php...

Python request post上傳檔案

upload url header files 此處是重點!我們操作檔案上傳的時候,把目標檔案以open開啟,然後儲存到變數file裡面存到乙個字典裡面 upload data upload res requests.post upload url,upload data,files files,h...

通過Remotingservice上傳檔案

最近在因為在學習remoting,純粹只是了解一下,發現remoting確實是好東西。我們通常有三種方式來使用remoting,一種是 第一種 publishing a public object 公開的物件建立在本地 第二種 remote creation of a public object s...