收藏
回答

ios App上传图片到服务器,图片在ios的小程序上图片会翻转90度、180度

框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
小程序 Bug iOS 11.3.1 iphone6s 6.6.6

ios App 上传图片到服务器,图片在ios的小程序上图片会翻转90度、180度,浏览器和Android上市正常显示的


照片是这样的



小程序展示的是这样的


代码:

<template name="car-img-swiper">

 <view class="car-img-swiper">
   <swiper bindchange="listenSwipe">
     <block wx:for="{{imageList}}" wx:for-item="image" wx:key="index">
       <swiper-item>
         <image class="car-img-swiper-car-img" src="{{image}}" mode="aspectFit" bindtap="previewImage"></image>
       </swiper-item>
     </block>
   </swiper>
   <view class="car-img-swiper-count">{{curPage}}/{{imageList.length}}</view>
</view>

</template>



.car-img-swiper{
 position:relative;
 display: flex;
 flex-direction: column;
 width:auto;
 height:560rpx;
 background: black;
}

.car-img-swiper-count{
 position: absolute;
 right: 0;
 bottom: 0;
 margin-right: 30rpx;
 margin-bottom: 15rpx;
 color: white;
}

swiper{
 width:100%;
 height: 100%;
 display: flex;
 background-color: black;
}

.car-img-swiper-car-img{
 width:100%;
 height: 100%;
 background-color: black;
}

回答关注问题邀请回答
收藏

2 个回答

  • 苏海红
    苏海红
    2018-10-30

    我也遇到了

    2018-10-30
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-05-23

    你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2018-05-23
    有用
    回复 2
    • GNIIIIINA
      GNIIIIINA
      2018-05-28

      我发了呀,

      2018-05-28
      回复
    • 疯狂的小辣椒
      疯狂的小辣椒
      2018-05-29回复GNIIIIINA

      按照代码片段的文档来分享出能复现问题的代码片段链接

      2018-05-29
      回复
登录 后发表内容