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

  • 相关阅读:
    第6章 对列表应用样式和创建导航条
    第3章 可视化格式模型
    第2章 为样式找到应用目标
    精通CSS 第1章
    JavaScript作用域学习笔记
    getByClass()
    判断各种数据类型
    值类型和引用类型的区别
    [原]Docker部署SuperMap8.1.1
    Docker初步
  • 原文地址:https://www.cnblogs.com/wjw-blog/p/7116106.html
Copyright © 2011-2022 走看看