from.update()
用一个新的文件替换指定路径下的一个现有文件。
1final avatarFile = File('path/to/local/file'); 2final String path = await supabase.storage.from('avatars').update( 3 'public/avatar1.png', 4 avatarFile, 5 fileOptions: const FileOptions(cacheControl: '3600', upsert: false), 6 );
Notes#
- 需要的政策权限。
buckets
权限: 无objects
的权限:update
andselect
Examples#
更新文件
1final avatarFile = File('path/to/local/file'); 2final String path = await supabase.storage.from('avatars').update( 3 'public/avatar1.png', 4 avatarFile, 5 fileOptions: const FileOptions(cacheControl: '3600', upsert: false), 6 );