zoukankan      html  css  js  c++  java
  • cordova插件file使用时遇到的一个平台相关的问题

    使用cordova-plugin-file可以帮助我们方便的操作app中的图片等文件,分享一下我在用该插件从图库读取图片时遇到的一个平台相关的小问题。

    使用场景,我会在APP中新增一张图片,会有一个可点击的【保存】按钮,点击时将图片copy到自己新建的目录下。

    在Android平台下(小米5),选中图片之后,系统的路径形式是:“file://路径+图片名.后缀名+?+时间戳”的方式。而iOS平台是一个“file://路径+图片名.后缀名”的方式。

    在Android平台下需要对图片路径字符串进行截取,把?后面的字符串截取调,只保留前面部分。

     1 // fileItem是一个图片对象,filePath是真正的路径
     2 if($ionicPlatform.isIOS){
     3      fileItem.filePath = fileItem.filePath.substring(0, fileItem.filePath.length);//iOS 平台选的图片生成路径中没有'?',返回-1, substring 不接受负值 会返回空
     4 
     5  }else {
     6      fileItem.filePath = fileItem.filePath.substring(0, fileItem.filePath.lastIndexOf("?"));
     7  }
     8 //或者
     9  fileItem.filePath = fileItem.filePath.substring(0, fileItem.filePath.lastIndexOf("?")=== -1 ? fileItem.filePath.length : fileItem.filePath.lastIndexOf("?"));
    10 //这样不同平台下,文件路径就可以个格式化为"file://.../image.jpeg"

    不可统一写成

    fileItem.filePath = fileItem.filePath.substring(0, fileItem.filePath.lastIndexOf("?"));
    这里在iOS平台下回返回-1,而substring不接受负数,否则会返回空数组[]。导致格式化的路径失败。

    具体的cordova-plugin-file的更多操作文件的函数请参考

    http://cordova.apache.org/docs/en/latest/reference/cordova-plugin-file/index.html#file-system-layouts

    https://github.com/apache/cordova-plugin-file

  • 相关阅读:
    hdu 3577 线段树
    hdu 5316 Magician 线段树
    POJ3468 本来是一道线段树
    hdu 3183 st表
    hdu 5285 BestCoder Round #48 ($) 1002 种类并查集
    hdu 5282 序列计数
    zoj 2432 模板LCIS
    hdu 1052 贪心
    Angular实践----定制你自己的指令
    Angular实践----理解数据绑定过程
  • 原文地址:https://www.cnblogs.com/wjw-blog/p/7116106.html
Copyright © 2011-2022 走看看