zoukankan      html  css  js  c++  java
  • 小程序图片上传

    wxml部分:

    <view class='tupian'>
    <image bindtap="chooseimage" style='33.33%;height:73px;' src="../../images/tupian.png" hidden='{{hiddentupian}}'/>
    <block wx:for="{{tempFilePaths}}" wx:key="{{index}}" >
    <image src="{{tempFilePaths[index]}}" mode="aspecFill" style='33.33%;height:73px;float:right' />
    </block>
    </view>

    js部分:

    chooseimage: function () {
    var that = this;
    wx.chooseImage({
    count: 3, // 默认9
    sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
    sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
    success: function (res) {
    that.setData({
    tempFilePaths: res.tempFilePaths,
    hiddentupian:true,
    })
    }
    })
    },

    submit部分:

    wx.uploadFile({
    url: url + '/fabu/fabu!upload.action', //仅为示例,非真实的接口地址
    method: 'post',
    filePath: tpsc[i],
    name: 'file',
    formData: {
    'filen': result11[i],
    },
    header: {
    "Content-Type": "multipart/form-data"
    },
    success: function (res) {
    var data = res.data
    }
    })

  • 相关阅读:
    [UE4]虚幻引擎的C++环境安装
    [UE4]Drop,扔物品
    [UE4]Grab抓取
    [UE4]抓取准备
    [UE4]用Format Text进行调试
    [UE4]Overlap Event 碰撞事件
    [UE4]Skeletal Mesh的碰撞体
    [UE4]模拟物理
    [UE4]Static Mesh的碰撞体
    [UE4]镜像
  • 原文地址:https://www.cnblogs.com/zcy1995/p/9361391.html
Copyright © 2011-2022 走看看