当前位置:网站首页>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
边栏推荐
- CEP used by Flink
- [exercise-4] (UVA 11988) broken keyboard = = (linked list)
- 【练习-5】(Uva 839)Not so Mobile(天平)
- Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
- Information security - Epic vulnerability log4j vulnerability mechanism and preventive measures
- X-forwarded-for details, how to get the client IP
- Alice and Bob (2021 Niuke summer multi school training camp 1)
- 渗透测试 ( 8 ) --- Burp Suite Pro 官方文档
- 605. Planting flowers
- 渗透测试 ( 2 ) --- 渗透测试系统、靶机、GoogleHacking、kali工具
猜你喜欢
Nodejs+vue online fresh flower shop sales information system express+mysql
D - function (HDU - 6546) girls' competition
快速转 TypeScript 指南
1013. Divide the array into three parts equal to and
Differential (one-dimensional, two-dimensional, three-dimensional) Blue Bridge Cup three body attack
(POJ - 3579) median (two points)
渗透测试 ( 2 ) --- 渗透测试系统、靶机、GoogleHacking、kali工具
Vs2019 initial use
[exercise-5] (UVA 839) not so mobile (balance)
Information security - Epic vulnerability log4j vulnerability mechanism and preventive measures
随机推荐
[exercise-3] (UVA 442) matrix chain multiplication
socket通讯
Penetration test (1) -- necessary tools, navigation
Raspberry pie csi/usb camera uses mjpg to realize web camera monitoring
【练习-1】(Uva 673) Parentheses Balance/平衡的括号 (栈stack)
Perform general operations on iptables
Ball Dropping
QT实现窗口置顶、置顶状态切换、多窗口置顶优先关系
[exercise-7] crossover answers
Pytorch extract skeleton (differentiable)
window11 conda安装pytorch过程中遇到的一些问题
Share an example of running dash application in raspberry pie.
What is the difficulty of programming?
Information security - Analysis of security orchestration automation and response (soar) technology
The "sneaky" new asteroid will pass the earth safely this week: how to watch it
Pyside6 signal, slot
Codeforces Round #799 (Div. 4)A~H
Auto. Getting started with JS
Suffix expression (greed + thinking)
Alice and Bob (2021 Niuke summer multi school training camp 1)