本文主要是介绍MVC Api微信小程序wx.uploadFile上传文件,前后端代码实例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
// 小程序端js
Page({/*** 页面的初始数据*/data: {userHeaderImage: "../../../images/1.jpg"},/*** 生命周期函数--监听页面加载*/onLoad: function(options) {},chooseImage: function() {var that = this;wx.chooseImage({count: 1,sizeType: ['original', 'compressed'],sourceType: ['album', 'camera'],success(res) {// tempFilePath可以作为img标签的src属性显示图片const tempFilePaths = res.tempFilePaths[0]that.setData({userHeaderImage: tempFilePaths})console.log(tempFilePaths)//上传图片wx.uploadFile({url: 'https://xxxx/api/wxtest/uploadfile', //仅为示例,非真实的接口地址filePath: tempFilePaths,name: 'file',// header: {// "content-type": "multipart/form-data",// 'content-type': 'applica
这篇关于MVC Api微信小程序wx.uploadFile上传文件,前后端代码实例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!