0.1.5 • Published 6 years ago

sfs-vue-aliyun-upload v0.1.5

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

vue-aliyun-upload 一款很山寨的阿里云上传组件

安装方式:

npm install fs-vue-aliyun-upload --save-dev


阿里云vue上传组件,兼容性好,官方demo改变,通过授权token后上传,除了依赖 plupload 不需要 sdk 支持。
将持续更多拖拽上传等功能以及阿里云更多vue结合项目。请继续关注。
<sfs-vue-alioss-upload
        authServerUrl="http://127.0.0.1/oss-upload-auth/get.php"
        :showPreview="true"
        :showUI="true"
        :showProgress="true"
        :uploadTitle="false"
        :useRealName="true"
        :onInit="onInit"
        :onFileUploaded="onFileUploaded"
        maxSize="50mb"
        ossDir="oss_test_upload/"
        extensions="jpg,png,jpeg,mp4,mov,MP4,MOV"
></sfs-vue-alioss-upload>


export default {
    components: {SfsVueAliossUpload},
}

回调事件

通过接收、重写回调事件可以自定义开发所需的流程,比如结合ivew等第三方UI框架的同时比较适用。 demo只是做了个简单的演示,正常适用基本都会屏蔽自己开发。 showUI = false showProgress = false 屏蔽默认demo ui 上传文件后可以通过 file.data_base64 获取 本地预览图片的base64 上传文件后可以通过 file.oss_name 获取 oss 的重命名 自定义控件的时候可以通过获取 id 为 "selectfiles" 的 click 事件调起文件选择框

onInit (object) onFilesAdded (up, file) 上传之后可以通过 object.oss_name 获得oss文件名 uploadTitle设置成文字时候显示上传页头文字 onBeforeUpload (up, file) onProgress (up, file) onSuccess (up, file) onError (up, err) onFileUploaded (up, file, info)

Token获取参考官方SDK

https://help.aliyun.com/document_detail/31920.html?spm=a2c4g.11186623.6.629.CKS3hE

PHP示例(demo.php) 示例中的authServerUrl

<?php
    // 指定允许其他域名访问
    header('Access-Control-Allow-Origin:*');
    // 响应类型
    header('Access-Control-Allow-Methods:POST');
    // 响应头设置
    header('Access-Control-Allow-Headers:x-requested-with,content-type');
    function gmt_iso8601($time) {
        $dtStr = date("c", $time);
        $mydatetime = new DateTime($dtStr);
        $expiration = $mydatetime->format(DateTime::ISO8601);
        $pos = strpos($expiration, '+');
        $expiration = substr($expiration, 0, $pos);
        return $expiration."Z";
    }

    $id= 'XXXXXXXXXXXXXXXX';
    $key= 'XXXXXXXXXXXXXXXX';
    $host = 'http://XXXXXXXXXXXXXXXX.oss-cn-hangzhou.aliyuncs.com';

    $now = time();
    $expire = 30; //设置该policy超时时间是10s. 即这个policy过了这个有效时间,将不能访问
    $end = $now + $expire;
    $expiration = gmt_iso8601($end);

    $dir = '';

    //最大文件大小.用户可以自己设置
    $condition = array(0=>'content-length-range', 1=>0, 2=>1048576000);
    $conditions[] = $condition;

    //表示用户上传的数据,必须是以$dir开始, 不然上传会失败,这一步不是必须项,只是为了安全起见,防止用户通过policy上传到别人的目录
    $start = array(0=>'starts-with', 1=>'$key', 2=>$dir);
    $conditions[] = $start;


    $arr = array('expiration'=>$expiration,'conditions'=>$conditions);
    //echo json_encode($arr);
    //return;
    $policy = json_encode($arr);
    $base64_policy = base64_encode($policy);
    $string_to_sign = $base64_policy;
    $signature = base64_encode(hash_hmac('sha1', $string_to_sign, $key, true));

    $response = array();
    $response['accessid'] = $id;
    $response['host'] = $host;
    $response['policy'] = $base64_policy;
    $response['signature'] = $signature;
    $response['expire'] = $end;
    //这个参数是设置用户上传指定的前缀
    $response['dir'] = $dir;
    echo json_encode($response);
?>
0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago