Replies: 2 comments
-
是的,设计如此,需要业务项目中自行实现 |
Beta Was this translation helpful? Give feedback.
0 replies
-
const upload = (file) => {
const formData = new FormData();
formData.append('file', file);
axios.post(url, formData);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions