当前位置:网站首页>antd upload beforeUpload中禁止触发onchange
antd upload beforeUpload中禁止触发onchange
2022-07-06 09:28:00 【梦想身高1米8】
官网:https://ant.design/components/upload-cn/#components-upload-demo-upload-png-only
稍微加点注释:beforeUpload属性返回false或Promise.reject,只会阻止上传(不会触发上传的请求),但是onchange函数还是会触发的,想要阻止onchange函数,需要beforeUpload返回Upload.LIST_IGNORE
1 返回false或Promise.reject
<html>
<head>
<script src="https://unpkg.com/[email protected]/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/antd/4.20.6/antd.min.js" integrity="sha512-Pn2PLpM5OByFVBBfe517wK9LQCCbQsM4sVl7y3yHDCpHL/X/k6st3cre9SUiopZrbBiOQiSDgvKMOagM6MWCnA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/antd/4.20.6/antd.min.css" integrity="sha512-GKJ7hcKFof/Chhk79mhxA8egInBxwypeeD9sF/fAlTJ75n0YvjQ8mSofBD7KahRnMTzdtUFF5+YWjnXTew8Y0w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="root"></div>
</body>
<script type="text/babel"> const e = React.createElement; const custom = () => {
const [number, setNumber] = React.useState(0); const beforeUpload = file => {
const isPNG = file.type == 'image/png'; return isPNG; // return new Promise(()=>{
// const isPNG = file.type == 'image/png'; // if(isPNG) {
// resolve(); // } // else {
// reject(); // } // }) } const onChange = info => {
antd.message.info('触发onchange') if (info.file.status == 'uploading') {
antd.message.info('正在上传') } if (info.file.status === 'done') {
antd.message.info('上传成功') } else if (info.file.status === 'error') {
antd.message.info('上传失败') } } return <antd.Upload name='file' action='https://www.mocky.io/v2/5cc8019d300000980a055e76' headers={
{
authorization: 'authorization-text', }} onChange={
info => onChange(info)} beforeUpload={
beforeUpload} > <antd.Button>上传</antd.Button> </antd.Upload > } const domContainer = document.querySelector('#root'); ReactDOM.render(e(custom), domContainer); </script>
</html>
2 返回Upload.LIST_IGNORE
<html>
<head>
<script src="https://unpkg.com/[email protected]/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/antd/4.20.6/antd.min.js" integrity="sha512-Pn2PLpM5OByFVBBfe517wK9LQCCbQsM4sVl7y3yHDCpHL/X/k6st3cre9SUiopZrbBiOQiSDgvKMOagM6MWCnA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/antd/4.20.6/antd.min.css" integrity="sha512-GKJ7hcKFof/Chhk79mhxA8egInBxwypeeD9sF/fAlTJ75n0YvjQ8mSofBD7KahRnMTzdtUFF5+YWjnXTew8Y0w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="root"></div>
</body>
<script type="text/babel"> const e = React.createElement; const custom = () => {
const [number, setNumber] = React.useState(0); const beforeUpload = file => {
const isPNG = file.type == 'image/png'; return isPNG || antd.Upload.LIST_IGNORE; // return new Promise(()=>{
// const isPNG = file.type == 'image/png'; // if(isPNG) {
// resolve(); // } // else {
// return antd.Upload.LIST_IGNORE; // } // }) } const onChange = info => {
antd.message.info('触发onchange') if (info.file.status == 'uploading') {
antd.message.info('正在上传') } if (info.file.status === 'done') {
antd.message.info('上传成功') } else if (info.file.status === 'error') {
antd.message.info('上传失败') } } return <antd.Upload name='file' action='https://www.mocky.io/v2/5cc8019d300000980a055e76' headers={
{
authorization: 'authorization-text', }} onChange={
info => onChange(info)} beforeUpload={
beforeUpload} > <antd.Button>上传</antd.Button> </antd.Upload > } const domContainer = document.querySelector('#root'); ReactDOM.render(e(custom), domContainer); </script>
</html>
我试了一下,如果使用promise,如果不返回resove()
或reject()
(啥返回都没有的情况),onchange也不会触发。
ps:网页里使用react和antd的情况,可以看这个
https://blog.csdn.net/weixin_43915401/article/details/125046690
边栏推荐
- [exercise-9] Zombie's Treasury test
- 【练习-5】(Uva 839)Not so Mobile(天平)
- 807. Maintain the urban skyline
- 【练习-4】(Uva 11988)Broken Keyboard(破损的键盘) ==(链表)
- Penetration test (7) -- vulnerability scanning tool Nessus
- Sanic异步框架真的这么强吗?实践中找真理
- 1323. Maximum number of 6 and 9
- 【练习-6】(PTA)分而治之
- Analyse du format protobuf du rideau en temps réel et du rideau historique de la station B
- [exercise -11] 4 values why sum is 0 (and 4 values of 0)
猜你喜欢
Codeforces Round #801 (Div. 2)A~C
C language learning notes
Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
Analyse du format protobuf du rideau en temps réel et du rideau historique de la station B
The concept of C language array
Suffix expression (greed + thinking)
Maximum product (greedy)
TCP's three handshakes and four waves
Ball Dropping
Penetration test (1) -- necessary tools, navigation
随机推荐
Analysis of protobuf format of real-time barrage and historical barrage at station B
【练习-3】(Uva 442)Matrix Chain Multiplication(矩阵链乘)
[exercise-2] (UVA 712) s-trees
分享一个在树莓派运行dash应用的实例。
Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
Raspberry pie csi/usb camera uses mjpg to realize web camera monitoring
New to redis
[teacher Gao UML software modeling foundation] collection of exercises and answers for level 20 cloud class
Pyside6 signal, slot
Opencv learning log 26 -- detect circular holes and mark them
Programmers, what are your skills in code writing?
Radar equipment (greedy)
最全编程语言在线 API 文档
[exercise-5] (UVA 839) not so mobile (balance)
1005. Maximized array sum after K negations
(POJ - 2739) sum of constructive prime numbers (ruler or two points)
Common configuration files of SSM framework
[exercise -11] 4 values why sum is 0 (and 4 values of 0)
Flask框架配置loguru日志庫
D - function (HDU - 6546) girls' competition