zoukankan      html  css  js  c++  java
  • 小程序单图上传到服务器

    // 上传营业执照
    fail_yingye(e) {
    var that = this;
    var uniacid = app.siteInfo.uniacid;
    var idx = e.currentTarget.dataset.index;
    var yingye = that.data.yingye;
    var openid = wx.getStorageSync('openid')
    wx.chooseImage({
    count: 1, // 默认9
    sizeType: ['original', 'compressed'],
    sourceType: ['album', 'camera'],
    success: function (res) {
    var yingyes = that.data.yingye;
    var tempFilePath = res.tempFilePaths[0];
    yingyes[idx].src = tempFilePath;
    wx.uploadFile({
    url: that.data.url + 'app/index.php?i=' + uniacid + '&c=entry&a=wxapp&do=Upload&m=pinba',
    filePath: tempFilePath,
    name: 'upfile',
    formData: {
    // 'path': 'wxchat'
    },
    success: function (res) {
    console.log(res.data)
    that.setData({
    yingyes: res.data,
    })
    // app.util.request({
    // 'url': 'entry/wxapp/Shenhe',
    // data: {
    // openid: openid,
    // uplogo: res.data
    // },
    // success: function (res) {
    // console.log(res.data.data)
    // // that.setData({
    // // myxiaofeisum: res.data.data
    // // })
    // },
    // fail: function (err) {
    // console.log(err)
    // },

    // })
    },
    fail: function (res) {
    console.log(res)
    },
    })
    that.setData({
    yingye: yingyes
    })
    console.log(yingye)
    },
    fail: function (res) { }
    })
    },
     
     
     
     
    url获取
    app.util.request({
    'url': 'entry/wxapp/url',
    'cachetime': '0',
    success: function (res) {
    console.log(res)
    that.setData({
    url: res.data
    })
    },
    })
     
     
    <!--上传营业执照 -->
    <view class='yingye sj_name'>
    <view class='font28 color_666'>上传营业执照</view>
    <view class='yingye_img' wx:for="{{yingye}}" wx:key="yy">
    <image src='{{item.src}}' data-index='{{index}}' bindtap='fail_yingye'></image>
    <view class='font26 color_666 txt_center'>{{item.txt}}</view>
    </view>
    </view>
  • 相关阅读:
    【初学EXT】布局练习
    创建型模式总结(补充UML类图)
    数据库基本概念总结
    Word2010操作技巧总结
    VMWare虚拟机磁盘压缩和上网总结
    第一次用word2010发布文章到博客园记
    设计模式学习总结一原则及创建型模式
    为什么要开始写blog?
    Delphi异常处理总结
    设计模式总结之行为型模式
  • 原文地址:https://www.cnblogs.com/isuansuan/p/9957479.html
Copyright © 2011-2022 走看看