The problem that the WeChat embedded browser cannot upload pictures

Problem: During the test, it was found that the WeChat embedded browser could not upload pictures, and pictures could be selected but not uploaded.

Use vue+el-upload to upload

A search on the Internet is a problem left over by Android WeChat.

Solution:

将inputlabel 

<input type=“file" name="image" accept="image/gif, image/jpeg, image/png”>

Written as

<input type="file" name="image" accept=“image/*”>

 

 

Guess you like

Origin blog.csdn.net/qq_42269433/article/details/100517062