This article uses the element official website and Qiniu Cloud official website element-ui official website: https://element.eleme.io/#/zh-CN Qiniu Cloud official website : https://www.qiniu.com/ 1. After registering and logging in to Qiniu Cloud, you need to authenticate your real name 2. Enter the space management after entering the object storage 3. Create a new space You can get the cdn test domain name here Python SDK can be viewed in the developer center To use Qiniu Cloud, you need to install it pip install qiniu We use the idea of encapsulation for encapsulation
# Qiniu Cloud from qiniu import Auth # You need to fill in your Access Key and Secret Key access_key = 'Access Key ' secret_key = 'Secret Key' def qn_token(): #Build authentication object q = Auth(access_key, secret_key) # The name of the space to be uploaded bucket_name = 'name' # Generate upload token token = q.upload_token(bucket_name) return token Get the uploaded interface # Import the packaged token from utils.comm import qn_token #Qiniu Cloud gets the token interface class GetQnToken(APIView): def get(self, request): token = qn_token() return Response({'code':200,'token':token}) With routing from django.urls import path from . import views urlpatterns = [ path('gettoken/', views.GetQnToken.as_view()) ] After downloading element in vue, you can use the component User avatar upload <template> <div> <!-- action is a required parameter, the upload address is Qiniu Cloud: http://up-z1.qiniu.com/--> <!-- Additional parameters included when uploading data--> <!-- on-success Hook when the file is uploaded successfully--> <!-- before-upload is the hook before uploading files. The parameter is the uploaded file. If false is returned or Promise is returned and rejected, the upload is stopped. --> <el-upload class="avatar-uploader" action="http://up-z1.qiniu.com/" :show-file-list="false" :on-success="handleAvatarSuccess" :before-upload="beforeAvatarUpload" :data='postData'> <img v-if="imageUrl" :src="imageUrl" class="avatar"> <i v-else class="el-icon-plus avatar-uploader-icon"></i> </el-upload> </div> </template> <script> import axios from 'axios' export default { data() { return { imageUrl: '', postData:{ // When uploading, you need to bring the attached token token:'' } } }, methods: { // Get Qiniu Cloud token getToken(){ this.axios.get('sadmin/gettoken/').then(res=>{ console.log(res.data) this.postData.token = res.data.token }) }, //Hook for successful file upload handleAvatarSuccess(res, file) { this.imageUrl = 'cdn test domain name' + res.key; console.log(this.imageUrl) }, beforeAvatarUpload(file) { const isJPG = file.type === 'image/jpeg'; const isLt2M = file.size / 1024 / 1024 < 2; if (!isJPG) { this.$message.error('Uploaded avatar images can only be in JPG format!'); } if (!isLt2M) { this.$message.error('The uploaded avatar image size cannot exceed 2MB!'); } return isJPG && isLt2M; } }, created() { this.getToken() } } </script> <style scoped> .avatar-uploader .el-upload { border: 1px dashed #d9d9d9; border-radius: 6px; cursor: pointer; position: relative; overflow: hidden; } .avatar-uploader .el-upload:hover { border-color: #409EFF; } .avatar-uploader-icon { font-size: 28px; color: #8c939d; width: 178px; height: 178px; line-height: 178px; text-align: center; } .avatar { width: 178px; height: 178px; display: block; } </style> **Regional correspondence table of Qiniu Cloud storage objects** **A storage area table of Qiniu** | **Storage area** | **Region code** | Client upload address| **Server upload address** | | ------------ | ------------ | --------------------------------- | ----------------------------- | | East China | ECN | `http(s)://upload.qiniup.com` | `http(s)://up.qiniup.com` | | North China | NCN | `http(s)://upload-z1.qiniup.com` | `http(s)://up-z1.qiniup.com` | | South China | SCN | `http(s)://upload-z2.qiniup.com` | `http(s)://up-z2.qiniup.com` | | North America | NA | `http(s)://upload-na0.qiniup.com` | `http(s)://up-na0.qiniup.com` | This is the end of this article about the practical application of Element avatar uploading. For more relevant Element avatar uploading content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL concurrency control principle knowledge points
>>: Extract specific file paths in folders based on Linux commands
This topic is an internal sharing in the second h...
1. Unzip MySQL 8.0.16 The dada folder and my.ini ...
Table of contents Pull the image Run the image (g...
environment: 1. Windows Server 2016 Datacenter 64...
In the WeChat applet project, the development mod...
Table of contents Preface –link Custom Network As...
Pure js implements a single-click editable table ...
Preface Recently, during an interview, I was aske...
Table of contents 1. Custom routing 2. Tab naviga...
Description and Introduction Docker inspect is a ...
After many difficult single-step debugging late a...
Life cycle classification Each component of vue i...
Previously, we knew several attributes of backgro...
Copy code The code is as follows: li {width:300px...
How to delete the container created in Docker 1. ...