赞
踩
在微信小程序中需要使用手机拍摄照片以及视频上传到后台进行进一步的操作,需要解决以下两个问题:
前端开发:微信小程序原生
后端开发:Flask
微信小程序如何拍摄照片及视频:使用wx.chooseMedia
API来实现
该API用于拍摄或从手机相册中选择图片或视频,文档链接为:wx.chooseMedia(Object object) | 微信开放文档
简单示例:
- function test()
- {
- wx.chooseMedia({
- count: 1,
- mediaType: ['image'],
- sourceType: ['camera'],
- camera: 'back',
- success(res) {
- console.log(res)
- },
- fail(res){
- console.log(res)
- }
- })
- }
主要参数含义如下:
回调参数res内容如下:
(更多参数以及回调参数请参考官方文档)
由上可知,我们首选需要调用wx.chooseMedia
函数,选择拍摄照片或者视频,然后在回调函数中拿到本地临时文件路径,这样就获取到了拍摄的照片或视频,但我们拿到的并不是一个完整的.png/.mp4文件,而是一个临时文件链接,例如:http://tmp/z7bXVKwgyWTKcbc89c663afd501de1d27ed321f8591c.jpg
这样的文件链接可以在开发者工具中打开:
但该链接无法在外部进行访问,因此就涉及到如何将该链接所代表的文件上传到后台的问题;
这样的文件在小程序中被称为”本地临时文件“,仅在当前生命周期内保证有效,重启之后不一定可用;更多内容请参考官方文档:文件系统 | 微信开放文档
如何将拍摄的照片及视频上传到后台进行存储:
wx.uploadFile
APIrequest.files['photo'].stream.read()
来读取文件有关wx.uploadFile
可以参考:UploadTask | 微信开放文档
主要参数有:
wx.chooseMedia
回调中的tempFilePath因此完整的前端代码如下(上传图片):
- //拍摄照片
- photoCapture() {
- let that = this
- wx.chooseMedia({
- count: 1,
- mediaType: ['image'],
- sourceType: ['camera'],
- camera: 'back',
- success(res) {
- that.setData({
- photoLink: res.tempFiles[0].tempFilePath,
- })
- console.log(res.tempFiles[0].tempFilePath)
- console.log('图片拍摄成功')
- wx.showLoading({
- title: '正在上传图片',
- mask: true
- })
-
- //图片上传
- wx.uploadFile({
- url: 'http://localhost:5000/uploadImage',
- filePath: res.tempFiles[0].tempFilePath,
- name: 'photo',
- formData: {
- fileName: 'photoTest.png'
- },
- success(res) {
- wx.showToast({
- title: '图片上传成功',
- })
- }
- })
- },
- fail(res) {
- console.log('图片拍摄失败')
- }
- })
- }
首先拍摄照片,然后上传文件
后端使用flask进行开发
通过request.files
来接收文件
通过request.form
来接收wx.uploadFile
的formData
中携带的数据
通过write
方法将接收到的文件保存到本地
因此完整的后端代码如下(上传图片):
- app = Flask(__name__)
-
- @app.route('/')
- def hello_world():
- return 'Hello World'
-
- # 图片上传
- @app.route('/uploadImage', methods=["POST"])
- def uploadImage():
- video = request.files['photo'].stream.read()
- name = request.form['fileName']
- if not files_exists(name, 2):
- file_path = os.getcwd() + '\\images\\' + name
- with open(file_path, 'ab') as f:
- f.write(video)
- return 'image upload success'
- else:
- return 'image already exist'
-
- # 判断文件是否已经存在
- def files_exists(file_name, choice):
- if choice == 1:
- path = os.getcwd() + '\\videos\\'
- video_path = os.path.join(path, file_name)
- return os.path.isfile(video_path)
- else:
- path = os.getcwd() + '\\images\\'
- image_path = os.path.join(path, file_name)
- return os.path.isfile(image_path)
-
- if __name__ == '__main__':
- app.run(host='127.0.0.1', port=5000)
首先启动后端服务,然后小程序初始页面如下:
点击按钮拍摄图片,可以看到图片成功预览在小程序中:
在NetWork中可以看到接口的返回值:
图片上传成功;在后端也能看到图片已经保存下来了:
完整代码可以从这里下载:
前后端代码都有
index.wxml:
- <button type="primary" bind:tap="photoCapture">点击拍摄图片</button>
- <image src="{{photoLink}}"></image>
- <button type="primary" bind:tap="videoCapture">点击拍摄视频</button>
- <image src="{{videoLink}}"></image>
index.wxss:
- page {
- padding-top: 100rpx;
- height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- image{
- margin-top: 50rpx;
- margin-bottom: 50rpx;
- width: 600rpx;
- height: 400rpx;
- border: 1px solid black;
- }
index.js:
- Page({
- data: {
- photoLink: '',
- videoLink: '',
- },
-
- //拍摄照片
- photoCapture() {
- let that = this
- wx.chooseMedia({
- count: 1,
- mediaType: ['image'],
- sourceType: ['camera'],
- camera: 'back',
- success(res) {
- that.setData({
- photoLink: res.tempFiles[0].tempFilePath,
- })
- console.log(res.tempFiles[0].tempFilePath)
- console.log('图片拍摄成功')
- wx.showLoading({
- title: '正在上传图片',
- mask: true
- })
-
- //图片上传
- wx.uploadFile({
- url:'http://localhost:5000/uploadImage',
- filePath: res.tempFiles[0].tempFilePath,
- name: 'photo',
- formData: {
- fileName:'photoTest.png'
- },
- success(res) {
- wx.showToast({
- title: res.data,
- })
- }
- })
- },
- fail(res) {
- console.log('图片拍摄失败')
- }
- })
- },
-
- //拍摄视频
- videoCapture() {
- let that = this
- wx.chooseMedia({
- count: 1,
- mediaType: ['video'],
- sourceType: ['camera'],
- maxDuration: 60,
- camera: 'back',
- success(res) {
- that.setData({
- videoLink: res.tempFiles[0].thumbTempFilePath
- })
- console.log('视频拍摄成功')
- console.log(res.tempFiles[0].tempFilePath)
- wx.showLoading({
- title: '正在上传视频',
- mask: true
- })
-
- //视频上传
- wx.uploadFile({
- url:'http://localhost:5000/uploadVideo',
- filePath: res.tempFiles[0].tempFilePath,
- name: 'video',
- formData: {
- fileName:'videoTest.mp4'
- },
- success(res) {
- wx.showToast({
- title: res.data,
- })
- }
- })
- },
- fail(res) {
- console.log('图片拍摄失败')
- }
- })
- }
- })
- from flask import Flask, request
- import os
-
- app = Flask(__name__)
-
- @app.route('/')
- def hello_world():
- return 'Hello World'
-
- @app.route('/uploadVideo', methods=["POST"])
- def uploadVideo():
- video = request.files['video'].stream.read()
- name = request.form['fileName']
- if not files_exists(name, 1):
- file_path = os.getcwd() + '\\videos\\' + name
- with open(file_path, 'ab') as f:
- f.write(video)
- return 'upload success'
- else:
- return 'already exist'
-
-
- @app.route('/uploadImage', methods=["POST"])
- def uploadImage():
- video = request.files['photo'].stream.read()
- name = request.form['fileName']
- if not files_exists(name, 2):
- file_path = os.getcwd() + '\\images\\' + name
- with open(file_path, 'ab') as f:
- f.write(video)
- return 'upload success'
- else:
- return 'already exist'
-
-
- def files_exists(file_name, choice):
- if choice == 1:
- path = os.getcwd() + '\\videos\\'
- video_path = os.path.join(path, file_name)
- return os.path.isfile(video_path)
- else:
- path = os.getcwd() + '\\images\\'
- image_path = os.path.join(path, file_name)
- return os.path.isfile(image_path)
-
-
- if __name__ == '__main__':
- app.run(host='127.0.0.1', port=5000)
此外文件上传到后台也可以采用base64编码的方式进行上传
在我的这篇文章的【头像昵称填写】部分有所提及:微信小程序用户登录及头像昵称设置教程(前后端)_微信小程序-原生开发用户登录-CSDN博客
欢迎大家讨论交流~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。