Home supabase Upload a file
Post
Cancel

supabase Upload a file

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

Upload a file

파일 업로드

1
2
3
4
5
6
7
8
const avatarFile = event.target.files[0]
const { data, error } = await supabase
  .storage
  .from('avatars')
  .upload('public/avatar1.png', avatarFile, {
    cacheControl: '3600',
    upsert: false
  })

base64 파일 데이터에서 ArrayBuffer를 사용하여 파일 업로드

1
2
3
4
5
6
7
8
import { decode } from 'base64-arraybuffer'

const { data, error } = await supabase
  .storage
  .from('avatars')
  .upload('public/avatar1.png', decode('base64FileData'), {
    contentType: 'image/png'
  })
This post is licensed under CC BY 4.0 by the author.

supabase Empty a buckets

supabase Download a file