movie-trailer icon indicating copy to clipboard operation
movie-trailer copied to clipboard

礼貌提问:请问这个oss文件可以提供一下吗?谢谢

Open CherishMvp opened this issue 1 year ago • 1 comments

import OSS from "ali-oss"; import { Movie } from "~/types/movie";

export const ossStore = new OSS({ region: "oss-cn-hangzhou", accessKeyId: process.env.ACCESS_KEY_ID as string, accessKeySecret: process.env.ACCESS_KEY_SECRET as string, bucket: "cq-movie", });

export async function getMovieList(): Promise<Movie[]> { const result = await ossStore.get("movie.json"); const buf = Buffer.from(result.content); return JSON.parse(buf.toString()); }

CherishMvp avatar Dec 08 '23 14:12 CherishMvp

可以去阿里云申请一个,换成自己的😃

lhz960904 avatar Dec 21 '23 03:12 lhz960904