SoFunction
Updated on 2025-04-03

The front-end uses minio to transfer files and expand the code and the extension

Official minio document

minio-js can support ts.

It may appear after installation

Can‘t import the named export ‘xxx‘ from non EcmaScript module (only default export is available)

You can try to reduce the version of minio

npm install [email protected] --save

Code:

initialization

const Minio = require('minio')
 
const minioClient = new ({
  endPoint: '192.l68.0.1', //Minio server IP, you cannot add http://  port: 9000,
  accessKey: 'xxxx', //username
  secretKey: 'xxxx', //password
  useSSL: false  //https access needs to be set to true})

Upload file

const stream = require('stream')
 
/**
  *
  * @export Upload file (stream stream method)
  * @param {*} backetName String Bucket Name
  * @param {*} fileObj Object file object
  * @param {*} callback function
  */
export function uploadFile (backetName, fileObj, callback) {
  (backetName, fileObj)
  if (fileObj) {
    const file = fileObj
    if (file === undefined) {
      // Not selected    } else {
      const date = new Date()
      const year = new Date().getFullYear()
      const month =
        () + 1 < 10
          ? '0' + (() + 1)
          : () + 1
      const day = () > 9 ? () : '0' + ()
      const fileName = () + 
      const fileDate = '' + year + month + day
      const mineType = 
      const fileSize = 
      ('fileName', fileName)
      // Parameters      const metadata = {
        'content-type': mineType,
        'content-length': fileSize
      }
      // Determine whether the storage bucket exists      (backetName, function (err) {
        ('Judge whether the storage bucket exists')
        if (err) {
          if ( === 'NoSuchBucket') {
            return ('bucket does not exist.')
          }
          ('1233221')
          return (err)
        }
        // Prepare to upload        const reader = new FileReader()
        (file)
         = function (e) {
          const dataurl = 
          const blob = toBlob(dataurl)
          const reader2 = new FileReader()
          (blob)
           = function (ex) {
            const bufferStream = new ()
            (())
            (
              backetName,
              `${fileDate}/${fileName}`,
              bufferStream,
              fileSize,
              metadata,
              (err) => {
                if (err == null) {
                  (
                    backetName,
                    `${fileDate}/${fileName}`,
                    24 * 60 * 60,
                    function (err1, presignedUrl) {
                      (err1)
                      if (err1) return
                      if (presignedUrl) {
                        const arr = ('?')
                        if ( === 2) {
                          callback(arr[0])
                        }
                      }
                    }
                  )
                }
              }
            )
          }
        }
      })
    }
  }
}
 
/**
  *
  * @export base64 to blob
  * @param {*} base64Data Object base64 data
  * @return {*} blob
  */
export function toBlob (base64Data) {
  let byteString = base64Data
  if ((',')[0].indexOf('base64') >= 0) {
    byteString = ((',')[1]) // base64 decoding  } else {
    byteString = unescape((',')[1])
  }
  // Get file type  const mimeString = (';')[0].split(':')[1] // mime type  const uintArr = new Uint8Array() // Create a view 
  for (let i = 0; i < ; i++) {
    uintArr[i] = (i)
  }
  const blob = new Blob([uintArr], {
    type: mimeString
  })
  return blob
}
 
// First determine whether the bucket exists. If you can ensure that the poke already exists, directly call the uploadFile methodexport function checkedAndUpload (bucketName, info, callback) {
  (bucketName, err => {
    if (err) {
      (bucketName, 'us-east-1', err1 => {
        if (err1) {
          (`${}File upload failed`)
          return
        }
        uploadFile(bucketName, info, callback)
      })
    } else {
      uploadFile(bucketName, info, callback)
    }
  })
}
 
// First determine whether the bucket existsexport function connectionStatus (bucketName, callback) {
  (bucketName, err => {
    (err)
    callback(err)
  })
}

Upload file simple version:

const bucketName = 'picturebook-version'; // Replace with your bucket nameconst objectName = ; // Use file name as object name
//Create FileReader objectconst reader = new FileReader();

// Callback function triggered when reading is completed = (event) => {
	// Get file content from event object	const fileContent = ;

	// Convert ArrayBuffer to Buffer type data	const buffer = (fileContent);
	
	//Upload file content using putObject method	(bucketName, objectName, buffer, , (err, etag) => {
		if (err) {
			('Uploading file failed:', err);
		} else {
			();
			 = objectName;
			 ('File upload successfully, ETag:', etag);
		}
	});
};

// Start reading the file();

Download the file

 
export function downloadFile (bucketName, fileName, callback) {
  (bucketName, fileName, (err, dataStream) => {
    callback(err, dataStream)
  })
}

use

<div @click="selectFile" style="cursor: pointer; width: 80px; text-align: right"
 class="ant-upload-text" > Upload </div>
<input type="file  ref="uploadInput" v-show="false" @change="changeInput()"/>
import { uploadFile } from '@/utils/minio'
 
selectFile() {
  const inputDOM = this.$
  ()
},
changeInput() {
  const file = this.$
  if () {
     = {
      name: file[0].name,
      size: file[0].size,
      type: file[0].type,
    }
    uploadFile('carbon', file[0], (e) => {
       this.$ = ''
        = {
         ...,
         url: e,
       }
    })
  }
},

expand

advantage:

1. Direct access to object storage: The front-end communicates directly with MinIO without the need to use the back-end server as an intermediary. This can reduce the burden on the backend server, reduce network transmission time, and improve file transfer efficiency.

2. Reduce back-end development costs: The front-end directly uses the MinIO SDK for file upload and download, reducing the workload related to back-end development. This can speed up development and reduce overall development costs.

3. Distributed storage support: MinIO supports distributed storage, which can store data between multiple nodes, achieving high availability and fault tolerance. The front-end communicates directly with MinIO, and can take advantage of the distributed characteristics of MinIO to store files on different nodes to improve the reliability and availability of files.

4. Quick upload and download: MinIO is optimized for file upload and download, providing a fast transmission speed and low latency access experience. The front-end communicates directly with MinIO, which can obtain faster upload and download speeds and improve user experience.

5. Controllability and security: The front-end directly uses the MinIO SDK to upload and download files. Security measures such as access permissions, encryption methods, etc. can be set as needed to protect the security and integrity of the files. At the same time, the front-end can fully control the access and management of files and retain full control over the files.

6. Cross-platform compatibility: MinIO provides a rich client SDK, including JavaScript SDK, which can be easily integrated and used on various front-end platforms (Web, mobile, desktop). This can realize cross-platform file upload and download to meet the needs of different platforms.

shortcoming:

1. Only support projects built with Webpack engineering, because webpack is based on nodeJs, you can use require, fs and other functions

2. The Vite engineering construction form is not supported. Vite is the form of EsModule pure browser module. There is no function in nodeJs, so you can only use import. However, some third-party libraries do not support it, and will report strange errors.

3. The front-end direct transmission of Minio cannot obtain the upload progress, so it will naturally not be able to display the progress bar, so it cannot have a good human-computer interaction. You need to wait for Minio to feedback before you can determine whether the upload is successful.

4. The port, login account, and login password are written on the front end, which will expose key information, easily cause unnecessary information leakage, and be difficult to maintain.

5. Writing the Minio interface from the front end is not conducive to subsequent expansion. Every time a project is opened, copy code is required, which invisibly increases the maintenance difficulty.

Summarize

This is the article about the code and expansion of front-end transfer files using minio. For more related front-end transfer files using minio, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!