PhoneGap中文网

标题: phonegap 多图片选择插件 [打印本页]

作者: admin    时间: 2014-8-12 23:39
标题: phonegap 多图片选择插件
默认在我们phoengap中只能一次选择一张图片,所以很多人都很纠结,下面给大家分享一个 phonegap 多图片选择插件

github地址:


https://github.com/wymsee/cordova-imagePicker


phonegap 3.0以上在线安装地址:

  1. phonegap plugin add https://github.com/wymsee/cordova-imagePicker.git

  2. cordova plugin add https://github.com/wymsee/cordova-imagePicker.git
复制代码

使用插件:
The plugin creates the object window.imagePicker with the method getPictures(success, fail, options)
Example - Get Full Size Images (all default options):

  1. The plugin creates the object window.imagePicker with the method getPictures(success, fail, options)

  2. Example - Get Full Size Images (all default options):

  3. window.imagePicker.getPictures(
  4.     function(results) {
  5.         for (var i = 0; i < results.length; i++) {
  6.             console.log('Image URI: ' + results[i]);
  7.         }
  8.     }, function (error) {
  9.         console.log('Error: ' + error);
  10.     }
  11. );

  12. Example - Get at most 10 images scaled to width of 800:

  13. window.imagePicker.getPictures(
  14.     function(results) {
  15.         for (var i = 0; i < results.length; i++) {
  16.             console.log('Image URI: ' + results[i]);
  17.         }
  18.     }, function (error) {
  19.         console.log('Error: ' + error);
  20.     }, {
  21.         maximumImagesCount: 10,
  22.         width: 800
  23.     }
  24. );

复制代码



本地下载地址:

cordova-imagePicker-master.zip (95.42 KB, 下载次数: 440)


作者: index    时间: 2014-8-13 18:30
可以具体讲下使用步奏吗?新人看了源代码不懂怎么弄?谢了
作者: 359977465    时间: 2014-8-16 02:00
如果不是node下安装的,要复制到哪些目录才能对应得上?
作者: admin    时间: 2014-12-15 22:14
359977465 发表于 2014-8-16 02:00
如果不是node下安装的,要复制到哪些目录才能对应得上?

下载 git
作者: kissgo156    时间: 2015-12-10 10:49
下载后怎么本地安装
作者: maclee    时间: 2016-3-17 11:26
eclipse下怎么用?
作者: rcmyy123    时间: 2016-3-24 19:50
问一下,你代码中的maximumImagesCount的作用是什么,假如我要设置勾选了三张图片之后其他照片无法被勾选应该怎么做呢?
作者: admin    时间: 2016-3-25 18:14
kissgo156 发表于 2015-12-10 10:49
下载后怎么本地安装

下载后本地安装也是    cordova plugin add 本地地址
作者: 274860460    时间: 2016-5-24 17:22
results[i] 放在img src属性中显示空白?
作者: angele    时间: 2017-2-16 15:16
android 4.4.4 打开相册闪退,有解决办法么
作者: tengye    时间: 2017-3-16 17:08
这个插件具体怎么使用?我这边一直提示 Uncaught TypeError: Cannot call method 'getPictures' of undefined。
作者: GorgeousEmperor    时间: 2017-5-12 13:50
angele 发表于 2017-2-16 15:16
android 4.4.4 打开相册闪退,有解决办法么

你好,现在解决了吗?
作者: GorgeousEmperor    时间: 2017-5-12 13:51
angele 发表于 2017-2-16 15:16
android 4.4.4 打开相册闪退,有解决办法么

你好,现在解决了吗?
作者: GorgeousEmperor    时间: 2017-5-12 13:53
楼主,results多图展示在界面上,界面很卡,有什么好的办法呢?
作者: 爱在日落黄昏后    时间: 2017-9-12 19:58
都配置好了,在真机7.0系统上调用的时候秒退什么问题啊,谢谢
作者: 爱在日落黄昏后    时间: 2017-9-12 19:58
在真机7.0系统上调用的时候秒退,麻烦分析一下什么问题,谢谢




欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2