提交图片

Posted xiaoruaning

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提交图片相关的知识,希望对你有一定的参考价值。

/**
* 提交表单 提请支付
*/
submit: function(e) {
console.log(e)
let value = e.detail.value;
/**
* 判断每个input是否为空
*/
if (value.a_money == ‘‘) {
wx.showToast({
title: ‘装修金额不能为空‘,
icon: ‘none‘,
})
return false;
}
console.log("that.data.array[value.st].ct_id", that.data.array[value.st].ct_id)
let data = {
ct_id: that.data.array[value.st].ct_id, //业主id
com_id: that.data.com_id, //装修公司id
a_money: value.a_money, //申请金额
a_note: value.a_note, //进度说明
"cmd": "apply_company",
}
console.log(data)
wx.uploadFile({
url: app.globalData.api + ‘api.php‘,
filePath: that.data.submit_image_array[0],
name: ‘a_pic‘,
formData: data,
// method: "post",
// header: {
// "Content-Type": "application/x-www-form-urlencoded"
// },
success: function(res) {

console.log(res)
let data = JSON.parse(res.data)
console.log(data)
if (data.flag == 1) {
wx.showToast({
title: ‘提请支付成功!‘
})
} else {
wx.showToast({
title: ‘提请支付失败!‘,
icon: ‘none‘
})
}
},
fail: function(res) {
wx.showToast({
title: ‘请检查网络设置!‘,
icon: ‘none‘
})
},
complete: function(res) {
wx.hideLoading();
}
})

},


以上是关于提交图片的主要内容,如果未能解决你的问题,请参考以下文章

上传图片用图片文件的对象hash哈希值判断图片是否一样,避免重复提交相同的图片到服务器中

ajax图片上传(ajaxfileupload.js插件)

php后台商品添加,需要两个表单,一个用于提交上传图片,一个用于提交商品数据到数据库。

php 提交表单,包含textarea和多张图片

php中如何获取表单图片总数目?

app中 模拟表单上传图片