博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序图片上传
阅读量:5222 次
发布时间:2019-06-14

本文共 956 字,大约阅读时间需要 3 分钟。

wxml部分:

<view class='tupian'>

<image bindtap="chooseimage" style='width:33.33%;height:73px;' src="../../images/tupian.png" hidden='{
{hiddentupian}}'/>
<block wx:for="{
{tempFilePaths}}" wx:key="{
{index}}" >
<image src="{
{tempFilePaths[index]}}" mode="aspecFill" style='width: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
}
})

转载于:https://www.cnblogs.com/zcy1995/p/9361391.html

你可能感兴趣的文章
Android - ActivityLifecycleCallbacks
查看>>
windows常用命令
查看>>
Java之框架Spring(一)
查看>>
[转]C# 安装布署
查看>>
浅析Android中的消息机制-解决:Only the original thread that created a view hierarchy can touch its views....
查看>>
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5
查看>>
UITableViewCell 加载、添加、删除
查看>>
算法-KMP-leetcode-java
查看>>
IDEA Caused by: java.lang.OutOfMemoryError: PermGen space
查看>>
算法第3章上机实践报告
查看>>
string时间转换为时间格式
查看>>
2.3NandFlash的操作
查看>>
oracle文件版本
查看>>
使用Dagger2做静态注入, 对比Guice.
查看>>
Nginx+Tomcat 集群部署
查看>>
Maven项目实战(1)
查看>>
maven(基础介绍一)
查看>>
VB6之断点续传
查看>>
php检测文件只读、可写、可执行权限
查看>>
696. Count Binary Substrings - LeetCode
查看>>