PhoneGap中文网

 找回密码
 立即注册
查看: 59144|回复: 15
打印 上一主题 下一主题

phonegap 多图片选择插件

[复制链接]

493

主题

2035

帖子

6894

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6894
跳转到指定楼层
楼主
发表于 2014-8-12 23:39:41 | 显示全部楼层 回帖奖励 |倒序浏览 |阅读模式
默认在我们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)

回复

使用道具 举报

493

主题

2035

帖子

6894

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6894
沙发
 楼主| 发表于 2014-12-15 22:14:59 | 显示全部楼层
359977465 发表于 2014-8-16 02:00
如果不是node下安装的,要复制到哪些目录才能对应得上?

下载 git
回复 支持 反对

使用道具 举报

493

主题

2035

帖子

6894

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6894
板凳
 楼主| 发表于 2016-3-25 18:14:44 | 显示全部楼层
kissgo156 发表于 2015-12-10 10:49
下载后怎么本地安装

下载后本地安装也是    cordova plugin add 本地地址
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

ionic4视频教程

Archiver|手机版|小黑屋| PhoneGap中文网 ( 京ICP备13027796号-1 )  

GMT+8, 2024-5-3 17:32 , Processed in 0.052365 second(s), 33 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表