• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

uni-app开发h5或小程序调用摄像头拍照,录屏

武飞扬头像
Fairyasd
帮助2

uniapp开发h5或小程序调用摄像头拍照,录屏

	<view class="burst-info" style="margin-bottom:10px ;">
								<view class="uni-uploader-body" style="max-height: 220px;overflow: auto;">
									<view class="uni-uploader__files" style="display: flex;flex-wrap: wrap;">
										<!-- 图片 -->
										<block v-for="(image,index) in imageList" :key="index">

											<view class="uni-uploader__file" style="margin-right: 5px;">
												<view class="icon iconfont icon-cuo" @tap="delect(index)">X</view>
												<image class="uni-uploader__img" :src="https://blog.csdn.net/Fairyasd/article/details/image" :data-src="https://blog.csdn.net/Fairyasd/article/details/image"
													@tap="previewImage"></image>
											</view>
										</block>
										<!-- 视频 -->
										<!--  v-if="src" -->
										<view class="uni-uploader__file serchjia" v-for="(video,index) in src"
											:key="index" style="margin-right: 5px;">
											<view class=""
												style="position: relative;height: 120px;background-color: black;">
												<view class="icon iconfont icon-cuo" @tap="delectVideo(index)"
													style="margin-bottom: 5px;">X</view>
												<view class="uploader_video" style="top: 20px;">
													<video :src="https://blog.csdn.net/Fairyasd/article/details/video" class="video"></video>
												</view>
											</view>

										</view>
										<view class="uni-uploader__input-box" v-if="VideoOfImagesShow">
											<view class="uni-uploader__input" @tap="chooseVideoImage"> </view>
										</view>
									</view>
								</view>
							</view>
学新通
	var sourceType = [
		['camera'],
		['album'],
		['camera', 'album']
	];
	data:
			// 图片视频上传
				imagesUrlPath: [],
				VideoUrlPath: [],
				imageList: [], //图片
				src: [], //视频存放
				sourceTypeIndex: 2,
				checkedValue: true,
				checkedIndex: 0,
				sourceType: ['拍摄', '相册', '拍摄或相册'],
				cameraList: [{
						value: 'back',
						name: '后置摄像头',
						checked: 'true'
					},
					{
						value: 'front',
						name: '前置摄像头'
					},
				],
				cameraIndex: 0,
				VideoOfImagesShow: true,
				config: {
					fileUrl: this.baseurl   "/system/file/upload"
				},
				// ---------
学新通
		// 图片视频上传
			chooseVideoImage() {
				uni.showActionSheet({
					title: "选择上传类型",
					itemList: ['图片', '视频'],
					success: (res) => {
						console.log(res)
						if (res.tapIndex == 0) {
							this.chooseImages()
						} else {
							this.chooseVideo()
						}
					}
				})
			},
			chooseImages() {

				// 上传图片
				uni.chooseImage({
					count: 9, //默认9
					// sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
					sourceType: ['album', 'camera'], //从相册选择
					success: (res) => {
						uni.showLoading({
							title: "加载中"
						})
						let igmFile = res.tempFilePaths;
						// uni.showToast({
						// 	title:1 igmFile[0]
						// })
						var key = Math.random().toString(36).substr(2); //⽣成⼀个随机字符串的⽂件名
						wx.uploadFile({
							url: this.config.fileUrl,
							// method: "POST",
							formData: {
								'token': 'bearer '   uni.getStorageSync('token'),
								'key': key
							},
							filePath: igmFile[0],
							name: 'file',
							success: (res) => {

								$api.eventDownload({
									id: JSON.parse(res.data).data
								}).then(self => {
									uni.hideLoading();
									console.log(self.data)
									this.imagesUrlPath = this.imagesUrlPath.concat(JSON
										.parse(res.data).data); //获取上传id
									this.imageList = this.imageList.concat(self.data); //微信
									if (this.imageList.length >= 9) {
										this.VideoOfImagesShow = false;
									} else {
										this.VideoOfImagesShow = true;
									}
								})
							}
						})
						// this.imageList = this.imageList.concat(res.tempFilePaths)  //头条
					},
				});
			},
			chooseVideo() {

				// 上传视频
				uni.chooseVideo({
					maxDuration: 15,
					count: 1,
					// compressed:true,
					camera: this.cameraList[this.cameraIndex].value,
					sourceType: ['album', 'camera'], //从相册选择
					// sourceType: ['album'],
					success: (responent) => {
						uni.showLoading({
							title: "加载中"
						})
						console.log(1, responent)
						let videoFile = responent.tempFilePath;
						var key = Math.random().toString(36).substr(2); //⽣成⼀个随机字符串的⽂件名
						wx.uploadFile({
							url: this.config.fileUrl,
							method: "POST",
							formData: {
								'token': 'bearer '   uni.getStorageSync('token'),
								'key': key
							},
							filePath: videoFile,
							name: 'file',
							success: (res) => {
								$api.eventDownload({
									id: JSON.parse(res.data).data
								}).then(self => {
									uni.hideLoading();
									this.VideoUrlPath = this.VideoUrlPath.concat(JSON
										.parse(res.data).data); //获取上传id

									this.src = this.src.concat(self.data); //微信
									console.log(2, this.src)
									if (this.src) {
										this.itemList = ['图片']
									} else {
										this.itemList = ['图片', '视频']
									}
								})
							}
						})
						// this.src = responent.tempFilePath;  //头条
					}
				})
			},
			previewImage: function(e) {
				//预览图片
				var current = e.target.dataset.src
				uni.previewImage({
					current: current,
					urls: this.imageList
				})
			},
			delect(index) {
				uni.showModal({
					title: "提示",
					content: "是否要删除该图片",
					success: (res) => {
						if (res.confirm) {
							this.imageList.splice(index, 1)
							this.imagesUrlPath.splice(index, 1)
						}
					}
				})
			},
			delectVideo(index) {
				uni.showModal({
					title: "提示",
					content: "是否要删除此视频",
					success: (res) => {
						if (res.confirm) {
							this.src.splice(index, 1)
							this.VideoUrlPath.splice(index, 1)
						}
					}
				})
			}
		
学新通

如图
学新通
注意,小程序上线使用需要配置upload域名。

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgbkiek
系列文章
更多 icon
同类精品
更多 icon
继续加载