微信小程序里如何用阿里云上传视频,图片。。
纯手写,踩了半天多的坑干出来了。。。
网上也有对于阿里云如何在微信小程序里使用,但是很不全,包括阿里云文档的最佳实践里。
话不多说上代码了。
- upvideo(){
- var aliOssParams = util.aliOssParams();//主要是获取上传阿里云的加密策略policy和签名signature;以及上传自己要上传到阿里云的地址,当然还有自己阿里云accessid。
- //上传视频到阿里云
- var that = this;
- wx.chooseVideo({
- maxDuration: 10,
- success: function (res) {
- var tempFilePath = res.tempFilePath;
- var stringFilePath = String(tempFilePath);
- var indexType = stringFilePath.lastIndexOf('.');
- var type = stringFilePath.substring(indexType);
- var alikey = 'video/'+new Date().getTime() +
- Math.floor(Math.random() * 1000)+ type ;//随机1000内的数加上时间戳作为你存放在阿里云video目录下名字和类型。
- wx.uploadFile({
- url:aliOssParams.host,
- filePath: tempFilePath,
- name: 'file',
- formData: {
- name: tempFilePath,
- key: alikey,//这个是关键它是定义存放在阿里云那个目录下
- policy:aliOssParams.policy,//上传阿里云的加密策略
- OSSAccessKeyId: aliOssParams.aid,//自己阿里云的aid
- success_action_status: "200",
- signature: aliOssParams.signature,//上传阿里云的签名
- },
- success: function (res) {
- var videoUrl = aliOssParams.host+'/'+alikey;//这就是
- 刚上传阿里云后的存放的地址链接,通过它打开你刚上传视频。
- that.videoUrl = videoUrl;
- console.log('that',that,videoUrl);
- wx.showToast({
- title: "上传成功",
- icon: 'success',
- duration: 1000
- })
- },
- fail: function ({ errMsg }) {
- wx.showToast({
- title: "上传失败",
- duration: 1000
- })
- },
- })
- }
- })
通过代码大家可以看到最关键的是啥,如何获取加密策略和签名了,当然了,阿里云最佳实践里有demo,但是crypto这个库已经废弃了,它demo给你带过来的crypto,你只能自己去提取了。
这里是我提为大家提取的crypto函数,直接copy用。
- /*!
- * Crypto-JS v1.1.0
- * http://code.google.com/p/crypto-js/
- * Copyright (c) 2009, Jeff Mott. All rights reserved.
- * http://code.google.com/p/crypto-js/wiki/License
- */
- var base64map = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
- // Global Crypto object
- const Crypto = {};
- // Crypto utilities
- Crypto.util = {
- // Bit-wise rotate left
- rotl: function (n, b) {
- return (n << b) | (n >>> (32 - b));
- },
- // Bit-wise rotate right
- rotr: function (n, b) {
- return (n << (32 - b)) | (n >>> b);
- },
- // Swap big-endian to little-endian and vice versa
- endian: function (n) {
- // If number given, swap endian
- if (n.constructor == Number) {
- return util.rotl(n, 8) & 0x00FF00FF |
- util.rotl(n, 24) & 0xFF00FF00;
- }
- // Else, assume array and swap all items
- for (var i = 0; i < n.length; i++)
- n[i] = util.endian(n[i]);
- return n;
- },
- // Generate an array of any length of random bytes
- randomBytes: function (n) {
- for (var bytes = []; n > 0; n--)
- bytes.push(Math.floor(Math.random() * 256));
- return bytes;
- },
- // Convert a string to a byte array
- stringToBytes: function (str) {
- var bytes = [];
- for (var i = 0; i < str.length; i++)
- bytes.push(str.charCodeAt(i));
- return bytes;
- },
- // Convert a byte array to a string
- bytesToString: function (bytes) {
- var str = [];
- for (var i = 0; i < bytes.length; i++)
- str.push(String.fromCharCode(bytes[i]));
- return str.join("");
- },
- // Convert a string to big-endian 32-bit words
- stringToWords: function (str) {
- var words = [];
- for (var c = 0, b = 0; c < str.length; c++, b += 8)
- words[b >>> 5] |= str.charCodeAt(c) << (24 - b % 32);
- return words;
- },
- // Convert a byte array to big-endian 32-bits words
- bytesToWords: function (bytes) {
- var words = [];
- for (var i = 0, b = 0; i < bytes.length; i++, b += 8)
- words[b >>> 5] |= bytes[i] << (24 - b % 32);
- return words;
- },
- // Convert big-endian 32-bit words to a byte array
- wordsToBytes: function (words) {
- var bytes = [];
- for (var b = 0; b < words.length * 32; b += 8)
- bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF);
- return bytes;
- },
- // Convert a byte array to a hex string
- bytesToHex: function (bytes) {
- var hex = [];
- for (var i = 0; i < bytes.length; i++) {
- hex.push((bytes[i] >>> 4).toString(16));
- hex.push((bytes[i] & 0xF).toString(16));
- }
- return hex.join("");
- },
- // Convert a hex string to a byte array
- hexToBytes: function (hex) {
- var bytes = [];
- for (var c = 0; c < hex.length; c += 2)
- bytes.push(parseInt(hex.substr(c, 2), 16));
- return bytes;
- },
- // Convert a byte array to a base-64 string
- bytesToBase64: function (bytes) {
- // Use browser-native function if it exists
- if (typeof btoa == "function") return btoa(util.bytesToString(bytes));
- var base64 = [],
- overflow;
- for (var i = 0; i < bytes.length; i++) {
- switch (i % 3) {
- case 0:
- base64.push(base64map.charAt(bytes[i] >>> 2));
- overflow = (bytes[i] & 0x3) << 4;
- break;
- case 1:
- base64.push(base64map.charAt(overflow | (bytes[i] >>> 4)));
- overflow = (bytes[i] & 0xF) << 2;
- break;
- case 2:
- base64.push(base64map.charAt(overflow | (bytes[i] >>> 6)));
- base64.push(base64map.charAt(bytes[i] & 0x3F));
- overflow = -1;
- }
- }
- // Encode overflow bits, if there are any
- if (overflow != undefined && overflow != -1)
- base64.push(base64map.charAt(overflow));
- // Add padding
- while (base64.length % 4 != 0) base64.push("=");
- return base64.join("");
- },
- // Convert a base-64 string to a byte array
- base64ToBytes: function (base64) {
- // Use browser-native function if it exists
- if (typeof atob == "function") return util.stringToBytes(atob(base64));
- // Remove non-base-64 characters
- base64 = base64.replace(/[^A-Z0-9+\/]/ig, "");
- var bytes = [];
- for (var i = 0; i < base64.length; i++) {
- switch (i % 4) {
- case 1:
- bytes.push((base64map.indexOf(base64.charAt(i - 1)) << 2) |
- (base64map.indexOf(base64.charAt(i)) >>> 4));
- break;
- case 2:
- bytes.push(((base64map.indexOf(base64.charAt(i - 1)) & 0xF) << 4) |
- (base64map.indexOf(base64.charAt(i)) >>> 2));
- break;
- case 3:
- bytes.push(((base64map.indexOf(base64.charAt(i - 1)) & 0x3) << 6) |
- (base64map.indexOf(base64.charAt(i))));
- break;
- }
- }
- return bytes;
- },
- HMAC : function (hasher, message, key, options) {
- // Allow arbitrary length keys
- key = key.length > 16 * 4 ?
- hasher(key, { asBytes: true }) :
- Crypto.util.stringToBytes(key);
- // XOR keys with pad constants
- var okey = key,
- ikey = key.slice(0);
- for (var i = 0; i < 16 * 4; i++) {
- okey[i] ^= 0x5C;
- ikey[i] ^= 0x36;
- }
- var hmacbytes = hasher(Crypto.util.bytesToString(okey) +
- hasher(Crypto.util.bytesToString(ikey) + message, { asString: true }),
- { asBytes: true });
- return options && options.asBytes ? hmacbytes :
- options && options.asString ? Crypto.util.bytesToString(hmacbytes) :
- Crypto.util.bytesToHex(hmacbytes);
- },
- sha11:function(k) {
- var u = Crypto.util.stringToWords(k),
- v = k.length * 8,
- o = [],
- q = 1732584193,
- p = -271733879,
- h = -1732584194,
- g = 271733878,
- f = -1009589776;
- u[v >> 5] |= 128 << (24 - v % 32);
- u[((v + 64 >>> 9) << 4) + 15] = v;
- for (var y = 0; y < u.length; y += 16) {
- var D = q,
- C = p,
- B = h,
- A = g,
- z = f;
- for (var x = 0; x < 80; x++) {
- if (x < 16) {
- o[x] = u[y + x]
- } else {
- var s = o[x - 3] ^ o[x - 8] ^ o[x - 14] ^ o[x - 16];
- o[x] = (s << 1) | (s >>> 31)
- }
- var r = ((q << 5) | (q >>> 27)) + f + (o[x] >>> 0) + (x < 20 ? (p & h | ~p & g) + 1518500249 : x < 40 ? (p ^ h ^ g) + 1859775393 : x < 60 ? (p & h | p & g | h & g) - 1894007588 : (p ^ h ^ g) - 899497514);
- f = g;
- g = h;
- h = (p << 30) | (p >>> 2);
- p = q;
- q = r
- }
- q += D;
- p += C;
- h += B;
- g += A;
- f += z
- }
- return [q, p, h, g, f]
- },
- SHA1 : function(e, c) {
- var d = Crypto.util.wordsToBytes(Crypto.util.sha11(e));
- return c && c.asBytes ? d: c && c.asString ? Crypto.util.bytesToString(d) : Crypto.util.bytesToHex(d)
- }
- };
- // Crypto mode namespace
- Crypto.mode = {};
- export {Crypto}
有了上面的crypto工具函数了,就去看看具体如何生成签名与加密策略吧。。
- import base64 from "base-64"
- import {Crypto} from "./crypto.js"
- const util = {
- aliOssParams(){
- var aid = "xxxxxxx";//你自己的阿里云的accessid
- var aky="xxxxxxxxxx";//你自己的阿里云的accesskey
- var host = "https://xxxxxxxxx.aliyuncs.com";//你自己的阿里云域名
- var policyText = {
- "expiration": "2022-01-01T12:00:00.000Z",//上传的文件失效日期自己定义
- "conditions": [
- ["content-length-range", 0, 10485760000]//上传的内容大小,自己定义
- ]
- };
- var policy = base64.encode(JSON.stringify(policyText));//生成的加密策略
- var bytes = Crypto.util.HMAC(Crypto.util.SHA1, policy, aky, { asBytes: true }) ;
- var signature = Crypto.util.bytesToBase64(bytes);//生成的签名
- return {
- policy: policy,
- signature:signature,
- aid:aid,
- host: host
- }
- }
- }
- export {util}
至于如何上传图片,大体如下,请保证以上都已经跑通了,base64记得你上面引到。。
多张图片的上传如此
- upMyImg(){
- var aliOssParams = util.aliOssParams();
- var that = this;
- wx.chooseImage({
- count: 9, //最多可以选择的图片总数
- // sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
- sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
- success: function (res) {
- // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
- var tempFilePaths = res.tempFilePaths;
- //启动上传等待中...
- wx.showToast({
- title: '正在上传...',
- icon: 'loading',
- mask: true,
- duration: 10000
- })
- var uploadImgCount = 0;
- var tempFilePath;
- var stringFilePath = '';
- var alikey = '' ;
- var type='';
- for (var i = 0, h = tempFilePaths.length; i < h; i++) {
- // stringFilePath= String(tempFilePaths[i]);
- // type = stringFilePath.substring(stringFilePath.lastIndexOf('.'));
- alikey = 'imagees/'+new Date().getTime() + Math.floor(Math.random() * 150)+ '.jpg';
- that.srcs.push(tempFilePaths[i]);
- that.setData({srcs: that.srcs});
- wx.uploadFile({
- url: aliOssParams.host,
- filePath: tempFilePaths[i],//上传图片的路径
- name: 'file',
- formData: {
- key: alikey,
- name: tempFilePaths[i],
- policy:aliOssParams.policy,
- OSSAccessKeyId: aliOssParams.aid,
- success_action_status: "200",
- signature: aliOssParams.signature,
- },
- success: function (res) {
- uploadImgCount++;
- console.log('rrrs',res,tempFilePaths[i]);
- // var data = JSON.parse(res.data);
- //服务器返回格式: { "Catalog": "testFolder", "FileName": "1.jpg", "Url": "https://test.com/1.jpg" }
- // console.log('rrr',data);
- console.log('ddd222',res,aliOssParams.host,alikey);
- // var productInfo = that.data.productInfo;
- // if (productInfo.bannerInfo == null) {
- // productInfo.bannerInfo = [];
- // }
- // productInfo.bannerInfo.push({
- // "catalog": data.Catalog,
- // "fileName": data.FileName,
- // "url": data.Url
- // });
- // that.setData({
- // productInfo: productInfo
- // });
- //如果是最后一张,则隐藏等待中
- if (uploadImgCount == tempFilePaths.length) {
- // that.srcs.push(tempFilePaths[i]);
- console.log(that.srcs,3222);
- wx.hideToast();
- wx.showToast({
- title: "上传成功",
- icon: 'success',
- duration: 1000
- })
- }
- },
- fail: function (res) {
- wx.hideToast();
- wx.showModal({
- title: '错误提示',
- content: '上传图片失败',
- showCancel: false,
- success: function (res) { }
- })
- }
- });
- }
- }
- })
- // 上传图片完
- }
微信小程序里如何用阿里云上传视频,图片。。的更多相关文章
- 微信小程序里使用 Redux 状态管理
微信小程序里使用 Redux 状态管理 前言 前阵子一直在做小程序开发,采用的是官方给的框架 wepy , 如果还不了解的同学可以去他的官网查阅相关资料学习:不得不说的是,这个框架确相比于传统小程序开 ...
- 在微信小程序里使用 watch 和 computed
在开发 vue 的时候,我们可以使用 watch 和 computed 很方便的检测数据的变化,从而做出相应的改变,但是在小程序里,只能在数据改变时手动触发 this.setData(),那么如何给小 ...
- 微信小程序里实现跑马灯效果
在微信小程序 里实现跑马灯效果,类似滚动字幕或者滚动广告之类的,使用简单的CSS样式控制,没用到JS wxml: <!-- 复制的跑马灯效果 --> <view class=&quo ...
- 微信小程序开发注意事项总结:上拉加载失效、转义字符等
1.上拉加载失效 问题背景:部分页面上拉加载失效.当使用flex布局,底部固定,中间采用自适应撑满全屏实现滚动时,发现上拉加载失效,不知道是什么原因. 解决问题: 在小程序中,官方为我们提供了原生的下 ...
- 微信小程序电商实战-首页(上)
嗨,大家好!经过近两周的精心准备终于开始微信小程序电商实战之路喽.那么最终会做成什么样呢?当然可以肯定不会只做一个静态demo哦,先把我们小程序电商实战的整体架构发出来晒一下,请看下图: 架构图. ...
- vue 阿里云上传组件
vue 阿里云上传组件 Vue.js上传图片到阿里云OSS存储 测试项目git地址 本测试项目启动方法 示例链接 组件配置项 实践解释 本文主要介绍如何 在vue项目中使用web 直传方式上传阿里云o ...
- 微信小程序开发(二)----- 云开发
1.概念 微信小程序的云开发是腾讯云与微信团队深度合作推出的一个全新的小程序的解决方案,它提供了云函数.云数据库与云存储这三大基础能力支持,随着云开发的出现,小程序的开发者可以将服务端的部署和运营的环 ...
- 微信小程序里碰到的坑和小知识
本文作者:dongtao 来自:授权地址 本人低级程序员,以下bug不能确保在其它地方可以以相同的原因复现.同时, 出现很多bug的原因是小程序的基本知识还有编码的基本功不到位造成 路还很长,共勉 ...
- 微信小程序里的bug---video 的play()
微信小程序hidden转换后执行play()用真机测试不会播放.在调试器里可以. 解决方法,把hidden换成wx:if. 我刚开始以为网速问题,其实不是, 具体我也不知道为什,换上wxif解决了.
随机推荐
- linux内存 free命令 buffer cache作用
free命令用于查看linux内存使用情况 #free shared:用于进程之间相互共享数据. Used:已使用内存. total:内存总量. free:未使用的内存. available:开启一个 ...
- react中input自动聚焦问题
input自动聚焦问题 在react中可以使用refs解决这个问题,首先看一下refs的使用场景: (1)处理焦点.文本选择或媒体控制. (2)触发强制动画. (3)集成第三方 DOM 库. 使用re ...
- Centos7.5 安装VirtualBox增强工具
一.安装 1.自带tools: 选择VirtualBox工具栏 => 设备 => 安装增强功能 2.挂载光驱 3.进入光驱目录,执行(一定要用root权限执行) ①安装gcc yum i ...
- 【转】QPainter中坐标系变换问题
转自:http://blog.sina.com.cn/s/blog_67cf08270100ww0p.html 一.坐标系简介. Qt中每一个窗口都有一个坐标系,默认的,窗口左上角为坐标原点,然后水平 ...
- ES进阶--01
第2节结构化搜索_在案例中实战使用term filter来搜索数据 课程大纲 1.根据用户ID.是否隐藏.帖子ID.发帖日期来搜索帖子 (1)插入一些测试帖子数据 POST /forum/articl ...
- centos7环境下apache2.2.34的编译安装
.获取apache2..34的源码包 http://archive.apache.org/dist/httpd/httpd-2.2.34.tar.gz .获取apache的编译参数 apache的编译 ...
- 【原创】大数据基础之Hadoop(1)HA实现原理
有些工作只能在一台server上进行,比如master,这时HA(High Availability)首先要求部署多个server,其次要求多个server自动选举出一个active状态server, ...
- spring MVC如何获取session传值到前台
Session简单介绍 在WEB开发中,服务器可以为每个用户浏览器创建一个会话对象(session对象),注意:一个浏览器独占一个session对象(默认情况下).因此,在需要保存用户数据时,服务器程 ...
- liunx mysql 备份
执行命令:mysqldump -uroot -p lanwei > lanwei2018-08-02.sql 出错 -bash: mysqldump: command not found 查看m ...
- jetbrains的JetBrains PyCharm 2018.3.1破解激活到2100年(最新亲测可用)
破解补丁激活 之前看了好多的其它的方法感觉都不是很靠谱还是这个本人亲试可以长期有效不仅能激活pycharm.jetbrains的JetBrains PyCharm 2018.3.1破解激活到2100年 ...