博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序单图上传到服务器
阅读量:5886 次
发布时间:2019-06-19

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

// 上传营业执照
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>

转载于:https://www.cnblogs.com/isuansuan/p/9957479.html

你可能感兴趣的文章
如何将lotus 通讯簿导入到outlook 2003中
查看>>
WinForm 应用程序中开启新的进程及控制
查看>>
js replace,正则截取字符串内容
查看>>
Thinkphp5笔记三:创建基类
查看>>
查询反模式 - GroupBy、HAVING的理解
查看>>
Android中EditText,Button等控件的设置
查看>>
TextKit简单示例
查看>>
网格最短路径算法(Dijkstra & Fast Marching)(转)
查看>>
软链接和硬链接详解
查看>>
Redis_master-slave模式
查看>>
彻底卸载删除微软Win10易升方法
查看>>
SWT/JFACE之环境配置(一)
查看>>
应用程序日志中总是说MS DTC无法正确处理DC 升级/降级事件,是什么意思
查看>>
mybatis数据处理的几种方式
查看>>
作业2
查看>>
远程主机探测技术FAQ集 - 扫描篇
查看>>
C++中调用python函数
查看>>
Nomad添加acl认证
查看>>
“TI门外汉”网路知识笔记一 OSI参考模型
查看>>
你不需要jQuery(五)
查看>>