otherSelectFiles 小程序、H5 从相册选择图片

return: Promise

使用指南

全局使用 (推荐)
  1. //main.js
  2. import rup from '@/common/request/request-upFiles.js'; //文件路径请换成本地路径
  3. Vue.prototype.$rup = rup; //挂载到原型上
局部使用
  1. import rup from '@/common/request/request-upFiles.js';
  2. const res = await rup.otherSelectFiles({
  3. maximum:1,
  4. })
  5. console.log(res);

代码演示

1.简单使用
  1. const res = await this.$rup.otherSelectFiles({
  2. maximum: 3,
  3. })
  4. console.log(res);
2.选择指定格式文件
  1. const res = await this.$rup.otherSelectFiles({
  2. maximum: 3,
  3. sizeType: ['original', 'compressed']
  4. })
  5. console.log(res);
3.从什么位置选择
  1. const res = await this.$rup.otherSelectFiles({
  2. maximum: 3,
  3. sourceType: ['album']
  4. })
  5. console.log(res);

注意事项


不推荐使用此方法。没有默认参数,每个参数必须传递。使用起来比较麻烦。原本此方法就是为selectFiles提供的辅助方法,强烈建议使用selectFiles方法! 以上参数同selectFiles参数相同,所有参数必填