app(uniapp)端如何查看pdf、图片、视频

1、看图片:

调用 uni.previewImage 

uni.previewImage({
	urls: arr, //需要预览的图片http链接列表,多张的时候,url直接写在后面就行了
	current:0, // 当前显示图片的http链接,默认是第一个
	success: function(res) {},
	fail: function(res) {},
	complete: function(res) {},
})

2、看视频(我记得不能直接调用 必须搭配vedio使用):


	

3、看pdf:

调用 uni.downloadFile 和 uni.openDocument

uni.downloadFile({
	url: url,
	success: function (res) {
		var filePath = res.tempFilePath;
			uni.openDocument({
				filePath: filePath,
				showMenu: true,
				success: function (res) {
					 console.log('打开文档成功');
				}
			});
			}
});

你可能感兴趣的:(vue,前端,uniapp,uni-app,pdf)