我用hbuilderx调试,当图片超过设定的值后,onmaxed事件 android未触发,ios可以触发
plus.gallery.pick(function(path) {
plus.nativeUI.showWaiting("上传中......");
_this.options.choosenum = path.files.length;
for(var i in path.files) {
_this.appendFile(path.files[i]); //显示
}
}, function(error) {
// alert( "Capture image failed: " + error.message );
}, {
filename: "file:///storage/sdcard0/DCIM/Camera/" + "ra/",
multiple: true,
maximum: _this.options.maxnum,
onmaxed:function(){
console.log("33333");
plus.nativeUI.toast('最多只能选择'+_this.options.maxnum+'张图片');
},
system: false
});
w***@163.com
- 发布:2019-12-30 15:11
- 更新:2019-12-30 15:11
- 阅读:694
plus.gallery.pick onmaxed事件android未触发
分类:HBuilderX
0 个回复